用于updateOne和replaceOne(mongo本机驱动程序)的mongoose等价的restful patch put

时间:2016-11-20 21:39:32

标签: mongodb mongoose

mongodriver有更新符合http方法restful的方法。 Moongose的等价性是什么?

METHOD      MongoDriver  Detail                  Mongoose?

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

1 个答案:

答案 0 :(得分:12)

相当于updateOne的Mongoose是update multi: false选项(默认值)。

相当于replaceOne的猫鼬也是update,但使用overwrite: true选项。

Mongoose 4.x更新

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