suchen

Heim  >  Fragen und Antworten  >  Hauptteil

mongodb - mongoose 的 findByIdAndUpdate() 不能执行?

Student.findByIdAndUpdate(helper_id,{$push: {"favour": favour}});

为什么我使用上面的代码,该函数不能被执行,使用下面的代码却能执行?

Student.findByIdAndUpdate(helper_id,{$push: {"favour": favour}}).exec()

但是为什么我直接使用 Student.find()Student.findOne(), 不需要 .exec() 也能执行?

高洛峰高洛峰2788 Tage vor879

Antworte allen(1)Ich werde antworten

  • 我想大声告诉你

    我想大声告诉你2017-05-02 09:27:59

    请参考Mongoose的文档

    1、findOneAndUpdate([query], [doc], [options], [callback])

    有callback传递才执行。

    2、exec是promise的写法,代替callback,和使用callback作用一样。

    供参考。

    Love MongoDB! Have Fun!


    -->戳我<--请戳左边,就在四月!赶紧报名吧!

    MongoDB中文社区深圳用户大会开始报名啦!本论坛大神将在大会上隆重出台,发表演讲。此处有掌声!!!

    Antwort
    0
  • StornierenAntwort