Mongodb(nodejsdriver)updateOne查询错误:MongoError:必须指定update或remove = true

时间:2017-05-02 19:27:09

标签: node.js mongodb

我目前正在使用mongodb nodejs本机驱动程序(MongoDB服务器版本:3.4.1)并且我正在使用此查询:

   collection.updateOne(
     { _id : mongodb.ObjectId(data.myId) },
     { $set: { key : data.key } }
   );

我收到此错误:

(node:12965) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 3): MongoError: Either an update or remove=true must be specified

问题出在哪里?

0 个答案:

没有答案