Mongodb updateOne和replaceOne(mongo本机驱动程序)restful补丁的mongoose等价性

Mongodb updateOne和replaceOne(mongo本机驱动程序)restful补丁的mongoose等价性,mongodb,mongoose,Mongodb,Mongoose,mongodriver有方法将accord更新为http方法restful。 Moongose中的等价物是什么 METHOD MongoDriver Detail Mongoose? PATCH updateOne Partial Update findOneAndUpdate? PUT replaceOne Whole replacement doc ... 相当于updateOne的

mongodriver有方法将accord更新为http方法restful。 Moongose中的等价物是什么

METHOD      MongoDriver  Detail                  Mongoose?

PATCH       updateOne    Partial Update          findOneAndUpdate?
PUT         replaceOne   Whole replacement doc   ...

相当于
updateOne
的Mongoose带有
multi:false
选项(默认值)


replaceOne
相当的Mongoose也是
update
,但带有
overwrite:true
选项

猫鼬4.x更新


Mongoose模型现在直接支持和方法。

updateOne
相当的Mongoose具有
multi:false
选项(默认)


replaceOne
相当的Mongoose也是
update
,但带有
overwrite:true
选项

猫鼬4.x更新

Mongoose模型现在直接支持和支持方法