简体   繁体   中英

Multiple updates in one document using mongoose

I want to update multiple values in a single document in one mongoose call. Is this possible?

I have something similar to this:

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

It runs, but doesn't update anything.

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM