当我用查询查询我的mongodb集合时,我发现了多个文档。
根据documentation ," update()方法更新单个文档"。我不能使用 multi:true 选项,因为我想更新使用不同值找到的不同文档,所以:
我想做以下事情:
db.collection('foo').update(query,{$set : {'qux':'bar'}})
db.collection('foo').update(query,{$set : {'qux':'blep'}})
接近这一点,但还没到达那里 MongoDB: How to update multiple documents with a single command?