基本问题
我有一堆记录,我需要获取最新的(最近的)和最旧的(最近的)。
谷歌搜索时,我发现了这个主题,在那里我看到了几个查询:
// option 1
Tweet.findOne({}, [], { $orderby : { 'created_at' : -1 } }, function(err, post) {
console.log( post );
});
// option 2
Tweet.find({}, [], {sort:[['arrival',-1]]}, function(err, post) {
console.log( post );
});
不幸的是,他们都错误:
TypeError: Invalid select() argument. Must be a string or object.
该链接也有这个:
Tweet.find().sort('_id','descending').limit(15).find(function(err, post) {
console.log( post );
});
还有一个错误:
TypeError: Invalid sort() argument. Must be a string or object.
那么我怎样才能得到这些记录呢?
时间跨度
更理想的是,我只想要最旧和最新记录之间的时间差(秒?),但我不知道如何开始进行这样的查询。
这是架构:
var Tweet = new Schema({
body: String
, fid: { type: String, index: { unique: true } }
, username: { type: String, index: true }
, userid: Number
, created_at: Date
, source: String
});
我很确定我有最新版本的 mongoDB 和 mongoose。
编辑
这就是我根据 JohnnyHK 提供的答案计算时间跨度的方法:
var calcDays = function( cb ) {
var getOldest = function( cb ) {
Tweet.findOne({}, {}, { sort: { 'created_at' : 1 } }, function(err, post) {
cb( null, post.created_at.getTime() );
});
}
, getNewest = function( cb ) {
Tweet.findOne({}, {}, { sort: { 'created_at' : -1 } }, function(err, post) {
cb( null, post.created_at.getTime() );
});
}
async.parallel({
oldest: getOldest
, newest: getNewest
}
, function( err, results ) {
var days = ( results.newest - results.oldest ) / 1000 / 60 / 60 / 24;
// days = Math.round( days );
cb( null, days );
}
);
}