我目前正在使用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
问题出在哪里?