在MongoDB中,我们可以手动设置_id字段的值作为文档的唯一标识符。下面是几种手动设置_id的方法:
db.collection.insertOne({_id: "myId", name: "John"});
var document = {_id: "myId", name: "John"};
document._id = "myId";
db.collection.insertOne(document);
db.collection.updateOne({name: "John"}, {$set: {_id: "myId"}});
需要注意的是,手动设置_id的值时需要确保其唯一性,否则会导致冲突。