検索

ホームページ  >  に質問  >  本文

mongodb update + $or 无法准确更新数据

mongodb $update + $or 无法准确更新数据
使用语句:

db.getCollection('test').update( 
    {$or: [{c1:true, c2: true  }] } ,
    {$set: {rs:  true }},
    {multi:true}
)

需要3行都更新,但是只更新了1行($or被当成了$and)

数据如下:

/* 1 */
{
    "c1" : true
}

/* 2 */
{
    "c2" : true
}

/* 3 */
{
    "c1" : true,
    "c2" : true
}
PHP中文网PHP中文网2788日前576

全員に返信(1)返信します

  • 阿神

    阿神2017-05-02 09:20:16

    書き間違いです!または書き方に注意してください。

    リーリー

    返事
    0
  • キャンセル返事