オブジェクトの値を更新する方法はありますか?
{
_id: 1,
name: 'John Smith',
items: [{
id: 1,
name: 'item 1',
value: 'one'
},{
id: 2,
name: 'item 2',
value: 'two'
}]
}
id = 2; のアイテムの名前と値のアイテムを更新したいとしましょう。
私はマングースで次のことを試しました:
var update = {name: 'updated item2', value: 'two updated'};
Person.update({'items.id': 2}, {'$set': {'items.$': update}}, function(err) { ...
このアプローチの問題は、オブジェクト全体を更新/設定するため、この場合は id フィールドが失われることです。
マングースで特定の値を配列に設定し、他の値をそのままにしておくより良い方法はありますか?
また、 Person だけを照会しました。
Person.find({...}, function(err, person) {
person.items ..... // I might be able to search through all the items here and find item with id 2 then update the values I want and call person.save().
});