我正在尝试使用 Monk 进行简单的文档更新,但是会引发以下异常:
.../node_modules/monk/node_modules/mongoskin/node_modules/mongodb/node_modules/bson/lib/bson/objectid.js:35
throw new Error("Argument passed in must be a single String of 12 bytes or
我的代码很简单:
var db = require('monk')('localhost/app'),
raw = db.get('raw'),
stats = db.get('daily');
stats.updateById("1_20141108", {$set: { last_updated: 123 }, $inc: {"stats.facebookcom":1}}, function() {});
我尝试过使用 update、updateById、findAndModify 方法,但它仍然会抛出相同的错误。
插入工作正常,所以我不确定发生了什么。如何更新记录?