最佳答案
我试图通过 id 选择一个文档
我试过了:
collection.update({ "_id": { "$oid": + theidID } }
collection.update({ "_id": theidID }
collection.update({ "_id.$oid": theidID }}
也试过:
collection.update({ _id: new ObjectID(theidID ) }
这给了我一个错误500..。
var mongo = require('mongodb')
var BSON = mongo.BSONPure;
var o_id = new BSON.ObjectID(theidID );
collection.update({ _id: o_id }
这些都不起作用。如何选择 by _ id?