Mongoose nextObject

时间:2014-06-14 15:24:03

标签: node.js mongodb mongoose

我第一次尝试猫鼬。我似乎找不到与mongodb cursor nextObject相同的东西。这段代码:

    Question.find().sort({date:-1}).nextObject().exec callback

结果

TypeError: Object #<Query> has no method 'nextObject'

我似乎无法使用谷歌或非常糟糕的mongoose文档找到任何相关信息。

1 个答案:

答案 0 :(得分:0)

要查找最新或最旧版本,您是否可以使用findOnesort配对?

// finds the question with the most recent date
Question.findOne().sort({date: -1}).exec(function(err, question) {
    // ...
});

// finds the question with the oldest date
Question.findOne().sort({date: 1}).exec(function(err, question) {
    // ...
});