检索nodejs中的最后一个mongodb条目

时间:2016-11-23 16:41:54

标签: node.js mongodb

我需要帮助才能从我的收藏中检索最后一条记录。我有这段代码:

    db.collection('bbb1collection', function(err, collection) {
    collection.find({}).sort({_id:-1}).limit(1).toArray(function(err, results) {
        path = results;
    console.log(results);
}

3 个答案:

答案 0 :(得分:3)

看看这个:

db.collection('bbb1collection', function(err, collection) {
  collection
    .find()
    .sort({$natural: -1})
    .limit(1)
    .next()
    .then(
      function(doc) {
        console.log(doc);
      },
      function(err) {
        console.log('Error:', err);
      }
    );
});

了解$natural here

答案 1 :(得分:2)

使用此查询:

db.users.find().limit(1).sort({$natural:-1})

答案 2 :(得分:0)

return new Promise(async (resolve, reject) => { db.get().collection('bbb1collection').find().sort({$natural:-1}).limit(1).next().then((res) => {
    console.log(res)
    resolve(res)
});
});