以下是檢索集合中所有文檔的代碼。使用節點js的Mongo文檔的文檔ID
db.collection('movies', function(err, collectionref) {
// find all documents in a collection that have foo: "bar"
var cursor = collectionref.find({});
cursor.toArray(function(err, docs) {
// gets executed once all items are retrieved
res.render('movie', {'movies': docs});
});
});
我想使用節點js在集合中的所有文檔的id。
你在說什麼?_id如果是的話,那麼它在你的文檔 – Subburaj
是的,我想_id..how迭代文檔來獲取所有ID。 – user2947