我试图用nodejS在mongodb中做一个findAndModifiy,这是我的代码:
var nextBill = function (db, success, log) {
var collection = db.collection('autoincrements');
log.debug('autoIncrementRepository', 'nextBill');
var result = collection.findAndModify({
query: { _id: 'auto' },
update: { $inc: { bill: 1 } },
new: true
});
success(result.bill);
};
编辑:
尝试使用回调
collection.findAndModify({
query: { _id: 'auto' },
update: { $inc: { bill: 1 } },
new: true
}, function (e, result) {
success(result.budget);
});
但是给我错误需要删除或更新..但我正在做它..
答案 0 :(得分:18)
节点本机驱动程序实现中的.findAndModify()
方法与mongo shell实现不同。要进行上述更新,请执行以下操作:
collection.findAndModify(
{ "_id": "auto" },
{ "$inc": { "bill": 1 } },
function(err,doc) {
// work here
}
);
奇怪的是要删除你在选项中指定所以同样会“删除”匹配的文档:
collection.findAndModify(
{ "_id": "auto" },
{ "$inc": { "bill": 1 } },
{ "remove": true },
function(err,doc) {
// work here
}
);
主要区别在于您没有为操作命名“关键”部分。
答案 1 :(得分:9)
http://mongodb.github.io/node-mongodb-native/2.0/api/Collection.html#findAndModify
以上文档指定第二个参数是用于选择多个文档与查询匹配时使用哪个文档的排序顺序。只给出两个参数将导致"需要删除或更新"错误信息。
collection('MyCollection').findAndModify(
{ _id: "auto" },
[],
{ $inc: { "bill": 1 } },
{ upsert: true, new: true },
function(err,doc) {
// work here
}
);
答案 2 :(得分:2)
Hi I have followed this and it worked perfectly.
db.collection('test').findAndModify(
{hello: 'world'}, // query
[['_id','asc']], // sort order
{$set: {hi: 'there'}}, // replacement, replaces only the field "hi"
{}, // options
function(err, object) {
if (err){
console.warn(err.message); // returns error if no matching object found
}else{
console.dir(object);
}
});
});
答案 3 :(得分:0)
试试这个在nodejs中为我工作
users.findAndModify(
{ "_id": userid,"password":pwd},
[['_id', 'asc']],
{ "$set":{"password":npwd}},
{"upsert":false}
,function(err,result){
//enter code here
})