我找不到任何地方有这样的记录。默认情况下,find()操作将从头获取记录。我怎么能得到mongodb的最后N条记录?
编辑:我也想返回的结果从最近到最近的顺序,而不是相反。
我找不到任何地方有这样的记录。默认情况下,find()操作将从头获取记录。我怎么能得到mongodb的最后N条记录?
编辑:我也想返回的结果从最近到最近的顺序,而不是相反。
当前回答
如果你使用MongoDB compass,你可以使用sort field来过滤,
其他回答
你可以试试这个方法:
获取集合中记录的总数
db.dbcollection.count()
然后使用skip:
db.dbcollection.find().skip(db.dbcollection.count() - 1).pretty()
使用$slice操作符限制数组元素
GeoLocation.find({},{name: 1, geolocation:{$slice: -5}})
.then((result) => {
res.json(result);
})
.catch((err) => {
res.status(500).json({ success: false, msg: `Something went wrong. ${err}` });
});
其中geolocation是数据数组,从中我们得到最近5条记录。
使用.sort()和.limit()
按升序或降序使用Sort,然后使用limit
db.collection.find({}).sort({ any_field: -1 }).limit(last_n_records);
如果你使用MongoDB compass,你可以使用sort field来过滤,
你可以使用sort(), limit(),skip()从任何跳过的值开始获得最后N个记录
db.collections.find().sort(key:value).limit(int value).skip(some int value);