最佳答案
我想更新一个文件的 _id
字段。我知道这不是很好的练习。但出于技术原因,我需要更新一下。
如果我尝试更新它,我会得到:
db.clients.update({ _id: ObjectId("123")}, { $set: { _id: ObjectId("456")}})
Performing an update on the path '_id' would modify the immutable field '_id'
更新被拒绝了,我该怎么更新呢?