标签: node.js mongodb bulkupdate
我正在尝试使用具有不同字段值的collection更新mongodb中的大量文档。我对每个Id都有唯一的document。我需要在单个更新命令中更新大量记录。我们如何更新大量文档。 请提出解决此问题的方法。
collection
mongodb
Id
document
答案 0 :(得分:1)
您可以使用以下命令更新多个记录,
db.getCollection('collectionName').update({'condition if any'},{$set: { field:value}}, {multi:true})