一切正常。什么都没有破坏,但有些东西让我烦恼......我在node.js的上下文中理解Mongodb insertOne()方法的<write concern>
参数时遇到了困难。
我的困难在于我的课程(Coursera - Full stack web development)材料演示了insertOne()as
collection.insertOne(
{name: "Uthapizza", description: "test"},//a document
function(err,result){...};);// a callback function??
但是doco说
db.collection.insertOne(
<document>,
{
writeConcern: <document>//which is a document and not a callback function
}
)
如您所见,我的课程材料传递回调函数,而不是文档。我误解了doco吗?
答案 0 :(得分:0)
我看错了doco。 Thanx Neil Lunn!