在文档中,我们可以使用返回的insertOneWriteOpResultObject.ops来检索插入的文档.(Docs),但这样做时,我会得到undefined
。
复制代码:
const collection = db.collection("testcollection");
collection.insertOne({"name": "Test_Name", "description": "Test desc."},
(err, result) => {
console.log("After Insert:\n");
console.log(result.ops); //undefined but should return the document
collection.find({}).toArray((err, docs) => {
console.log("Found:\n");
console.log(docs);
db.dropCollection("testcollection", (err, result) => {
client.close();
});
});
});
2条答案
按热度按时间u4vypkhs1#
使用命令
npm list mongodb
检查MongoDB Node.js驱动程序的版本。如果是版本4,则无法访问result.ops
。在版本4中,insertOne返回只有2个属性的insertOneResult:确认并插入ID。nx7onnlm2#
4.x有一些变化。你可以参考下面的链接。https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_4.0.0.md
See this snip