在node.js中取消继承mongo db insertOne()写入关注参数

时间:2017-09-08 00:55:38

标签: node.js mongodb callback

一切正常。什么都没有破坏,但有些东西让我烦恼......我在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吗?

1 个答案:

答案 0 :(得分:0)

我看错了doco。 Thanx Neil Lunn!