使用mongoose在一个文档中进行多次更新

时间:2014-04-16 15:34:51

标签: node.js mongodb mongoose

我想在一次mongoose调用中更新单个文档中的多个值。这可能吗?

我有类似的东西:

update = {$inc : { numShown : 1 }, $inc : { secondField.subField : 1 }};
options = {};
MyModel.findByIdAndUpdate(req._id, update, options, function(err){
     if(err){ return console.error(err);}
}

它会运行,但不会更新任何内容。

1 个答案:

答案 0 :(得分:3)

您需要将两个$inc值组合到一个对象中并引用虚线键:

update = { $inc : { numShown : 1, 'secondField.subField' : 1 } };