Czy istnieje sposób na aktualizację wartości w obiekcie?
{
_id: 1,
name: 'John Smith',
items: [{
id: 1,
name: 'item 1',
value: 'one'
},{
id: 2,
name: 'item 2',
value: 'two'
}]
}
Powiedzmy, że chcę zaktualizować nazwy i wartości dla pozycji, gdzie id = 2;
Próbowałem następujących rzeczy w / mangusta:
var update = {name: 'updated item2', value: 'two updated'};
Person.update({'items.id': 2}, {'$set': {'items.$': update}}, function(err) { ...
Problem z tym podejściem polega na tym, że aktualizuje / ustawia cały obiekt, dlatego w tym przypadku tracę pole id.
Czy istnieje lepszy sposób w mongoose na ustawienie pewnych wartości w tablicy, ale pozostawienie innych wartości w spokoju?
Zapytałem również tylko o osobę:
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().
});