插入方法
MongoDB提供以下方法将文档插入集合:
如果您使用 MongoDB Atlas(用于在云中部署 MongoDB 的完全托管服务),则可以在连接到集群后使用这些方法插入文档。 要了解更多信息,请参阅 MongoDB Atlas 文档中的以下资源:
其他插入方法
以下方法还可以将新文档添加到集合中,包括 MongoDB Atlas 中托管的集合:
db.collection.updateOne()
与upsert: true
选项一起使用时。db.collection.updateMany()
与upsert: true
选项一起使用时。db.collection.findAndModify()
与upsert: true
选项一起使用时。db.collection.findOneAndUpdate()
与upsert: true
选项一起使用时。db.collection.findOneAndReplace()
与upsert: true
选项一起使用时。
有关更多信息和示例,请参阅这些方法的各个参考页。