Why two remove reference item are there for Model.remove in Mongoose API docs?

▼魔方 西西 提交于 2020-01-06 07:56:15

问题


After landing into the API docs of mongoose, there is left side menu, Under model.js section. We see something like this:

- model.js

    -Model
    -save
    -increment
    -remove      <== 1
    -model
    -$where
    -ensureIndexes
    -remove      <== 2
    ...

Both remove are having the link to Model#remove([fn])

There is one more topic which is not linked. Titled Model.remove(conditions, [callback]) which is documented under the same model.js section. (just after the topic Model.ensureIndexes)

Could anyone one tell me what is the difference between both?


回答1:


You can always browse the source code for mongoose. It's a great way to learn how it works.

There are two removes:

  1. Model.prototype.remove => this removes a specific mongoose Model object from a collection. It works on an instance.

    Model.prototype.remove = function remove (fn) { ... }

  2. Model.remove => this bypasses the Mongoose library and uses conditions supplied as the first parameter to perform a remove:

    Model.remove = function remove (conditions, callback) { ... }

(It is documented on the page as Model.remove, but it appears there's something wrong with the anchors on the page are pointed to the wrong function, likely because of the duplicated name.)



来源:https://stackoverflow.com/questions/14480257/why-two-remove-reference-item-are-there-for-model-remove-in-mongoose-api-docs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!