最佳答案
我使用 NodeJS 在 MongoDB 中插入文档。使用 collection.insert
,我可以像下面这段代码一样将文档插入数据库:
// ...
collection.insert(objectToInsert, function(err){
if (err) return;
// Object inserted successfully.
var objectId; // = ???
});
// ...
如何得到插入对象的 _id
?
有什么办法可以得到的 _id
没有得到最新的对象插入 _id
?
Supposing that in same time a lot of people access the database, I can't be sure that the latest id is the id of object inserted.