为了账号安全,请及时绑定邮箱和手机立即绑定

MongoDB中精确元素数组中的更新字段

MongoDB中精确元素数组中的更新字段

汪汪一只猫 2019-07-04 16:33:11
MongoDB中精确元素数组中的更新字段我有一个这样的文档:{     _id:"43434",     heroes : [         { nickname : "test",  items : ["", "", ""] },         { nickname : "test2", items : ["", "", ""] },     ]}我能$set类的第二个元素。items数组中嵌入对象的数组。heros带着nickname "test" ?结果:{     _id:"43434",     heroes : [         { nickname : "test",  items : ["", "new_value", ""] }, // modified here         { nickname : "test2", items : ["", "", ""] },     ]}
查看完整描述

3 回答

?
白猪掌柜的

TA贡献1893条经验 获得超10个赞

您需要使用两个概念:MongoDB位置算子并简单地为要更新的条目使用数字索引。

位置运算符允许您使用如下条件:

{"heros.nickname": "test"}

然后引用已找到的数组条目,如下所示:

{"heros.$  // <- the dollar represents the first matching array key index

因为您想要更新“Item”中的第二个数组条目,而数组键是0索引-这是键1。

因此:

> db.denis.insert({_id:"43434", heros : [{ nickname : "test",  items : ["", "", ""] }, { nickname : "test2", items : ["", "", ""] }]});
> db.denis.update(
    {"heros.nickname": "test"}, 
    {$set: {
        "heros.$.items.1": "new_value"
    }})> db.denis.find(){
    "_id" : "43434", 
    "heros" : [
        {"nickname" : "test", "items" : ["", "new_value", "" ]},
        {"nickname" : "test2", "items" : ["", "", "" ]}
    ]}


查看完整回答
反对 回复 2019-07-04
?
杨魅力

TA贡献1811条经验 获得超6个赞

db.collection.update({heroes:{$elemMatch:{ "nickname" : "test"}}},
 {
     $push: {
        'heroes.$.items': {
           $each: ["new_value" ],
           $position: 1
        }
     }
   })


查看完整回答
反对 回复 2019-07-04
  • 3 回答
  • 0 关注
  • 3176 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信