从 MongoDB find() 结果集中识别最后一个文档
我正在尝试使用 websockets 将数据从 node.js/MongoDB 实例“流”到客户端。一切都运转良好。
但如何识别结果中的最后一个文档呢?我正在使用 node-mongodb-native 从 node.js 连接到 MongoDB。
一个简化的例子:
collection.find({}, {}, function(err, cursor) {
if (err) sys.puts(err.message);
cursor.each(function(err, doc) {
client.send(doc);
});
});
I'm trying to 'stream' data from a node.js/MongoDB instance to the client using websockets. It is all working well.
But how to I identify the last document in the result? I'm using node-mongodb-native to connect to MongoDB from node.js.
A simplified example:
collection.find({}, {}, function(err, cursor) {
if (err) sys.puts(err.message);
cursor.each(function(err, doc) {
client.send(doc);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于 mongodb objectId 包含创建日期,您可以按 id 降序排序,然后使用 limit(1):
注意:我根本不熟悉 Node.js,上面的命令是 mongo shell 命令,我想您可以轻松地将其重写为 Node .js。
Since mongodb objectId contatins creation date you can sort by id, descending and then use limit(1):
Note: i am not familiar with node.js at all, above command is mongo shell command and i suppose you can easy rewrite it to node.js.
假设我有公司集合。下面的代码片段给了我集合中的最后一个文档。
代码不能依赖 _id,因为如果它是用户定义的值,它可能并不总是遵循特定模式。
Say I have companies collection. Below snippet gives me last document in the collection.
Code cannot rely on _id as it may not be on a specific pattern always if it's a user defined value.
如果你想使用游标,请使用排序和限制:
Use sort and limit, if you want to use cursor :