最佳答案
有没有更新对象中值的方法?
{
_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.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().
});