0
我正在嘗試更新mongodb數據庫中的文檔以及失敗的慘狀。更新文檔
我使用Node.js和受該驅動程序:https://github.com/mongodb/node-mongodb-native
這裏是我的代碼:
db.collection('test').update({ _id: '5210f6bc75c7c33408000001' }, {$set: { title: "new title"}, {w:1}, function(err) {
if (err) console.warn(err.message);
else console.log('successfully updated');
});
這裏是我的數據庫:
> db.test.find()
{ "type" : "new", "title" : "my title", "desc" : [ "desc 1" ], "_id" : ObjectId("
5210f6bc75c7c33408000001") }
>
我創建了一個successfully updated
消息,但變化沒有發生。
我在做什麼錯?