最佳答案
我有一堆记录,我需要得到最新的(最近的)和最老的(最近的)。
当我在谷歌上搜索时,我发现了 这个话题,在那里我看到了几个问题:
// 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 和猫鼬的最新版本。
以下是我根据 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 );
}
);
}