suchen

Heim  >  Fragen und Antworten  >  Hauptteil

node.js - mongodb 用findOneAndUpdate更新数据

在使用nodejs操作mongodb时(我用的是monk这个库),使用findOneAndUpdate更新数据时,一条数据第一遍更新是成功的,但第二遍更新不成功,打印错误是:{ lastErrorObject: { updatedExisting: false, n: 0 },
value: null,
ok: 1 }
网上找了很久找不到解决方法,来请教各位大神是怎么回事

PHP中文网PHP中文网2779 Tage vor763

Antworte allen(1)Ich werde antworten

  • PHP中文网

    PHP中文网2017-04-17 16:06:35

    根据您提供的lastErrorObject来看:

    1、updatedExisting:false,表示没有修改到document
    2、n:0, 表示修改到数据为0

    正常修改到数据会返回一个value,这个value为被修改的document

    从您表述的情况,是更新数据时,按照filter条件没有找到对应的document,所以updte没有成功。

    供参考。

    Love MongoDB! Have Fun!

    Antwort
    0
  • StornierenAntwort