Musíte použít 2 koncepty:poziční operátor mongodb a jednoduše použití číselného indexu pro položku, kterou chcete aktualizovat.
Polohový operátor vám umožňuje použít podmínku jako je tato:
{"heroes.nickname": "test"}
a poté odkazujte na položku nalezeného pole takto:
{"heroes.$ // <- the dollar represents the first matching array key index
Protože chcete aktualizovat 2. položku pole v "items", a klíče pole jsou indexovány 0 - to je klíč 1.
Takže:
> db.denis.insert({_id:"43434", heroes : [{ nickname : "test", items : ["", "", ""] }, { nickname : "test2", items : ["", "", ""] }]});
> db.denis.update(
{"heroes.nickname": "test"},
{$set: {
"heroes.$.items.1": "new_value"
}}
)
> db.denis.find()
{
"_id" : "43434",
"heroes" : [
{"nickname" : "test", "items" : ["", "new_value", "" ]},
{"nickname" : "test2", "items" : ["", "", "" ]}
]
}