gpt4 book ai didi

javascript - MongoDB。插入了未定义的记录。无法读取未定义的属性 'title'

转载 作者:行者123 更新时间:2023-11-28 18:54:10 25 4
gpt4 key购买 nike

我是 MongoDB 新手。一旦启动立即出现错误。我有一个简单的代码

var MongoClient = require('mongodb').MongoClient;

MongoClient.connect('mongodb://localhost:27017/mongotest',
function(err, db) {
console.log('Connected to MongoDB!');
// using the db connection object, save the collection 'testing' to
// a separate variable:
var collection = db.collection('testing');
// isert a new item using the collection's insert function:
collection.insert({
'title': 'Snowcrash'
}, function(err, docs) {
// on successful insertion, log to the screen the new
// collection's details:
console.log(docs.length + ' record inserted.');
console.log(docs[0].title + ' – ' + docs[0]._id);
// finally close the connection:
db.close();
});
});

这是error message

enter image description here

请帮助我了解此错误是什么以及如何修复它。如果你不复杂化的话。

MongoDB 版本 3.0.7

最佳答案

你应该用这个替换以前的代码

console.log(docs.ops.length + ' record inserted.');
console.log(docs.ops[0].title + ' – ' + docs.ops[0]._id);

关于javascript - MongoDB。插入了未定义的记录。无法读取未定义的属性 'title',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33967103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com