要修改MongoDB中的字段值,您可以使用update()方法或findOneAndUpdate()方法。
db.collection.update(
{ <query> },
{ $set: { <field1>: <value1>, <field2>: <value2>, ... } }
)
示例:
db.collection.update(
{ _id: ObjectId("12345") },
{ $set: { name: "John", age: 30 } }
)
db.collection.findOneAndUpdate(
{ <query> },
{ $set: { <field1>: <value1>, <field2>: <value2>, ... } }
)
示例:
db.collection.findOneAndUpdate(
{ _id: ObjectId("12345") },
{ $set: { name: "John", age: 30 } }
)
請注意,update()方法會更新所有符合條件的文檔,而findOneAndUpdate()方法只會更新第一個符合條件的文檔。