MongoDB 提供以下方法用于更新集合中的文档
db.collection.updateOne()
db.collection.updateMany()
db.collection.replaceOne()
以下方法也可以更新集合中的文档
db.collection.findOneAndReplace().
db.collection.findOneAndReplace()
db.collection.findOneAndUpdate().
db.collection.findOneAndUpdate()
db.collection.findAndModify().
db.collection.findAndModify()
db.collection.bulkWrite().
db.collection.bulkWrite()
有关更多信息示例,请参阅各个方法的单独参考页面。
返回
聚合管道
下一页
删除