在我的redux reducer状态中,我想更新对象对象内的属性。
{
users:{
'1':{id:'1', name:'', items:[], ....}
'2':{id:'1', name:'', items:[], ....}
...
}
}
我想更新对象items
在对象中使用键1 or 2
或任何其他键和其他状态未触及。该操作包含键号为action.id
,action.payload
包含String。
我很困惑spread
和update
如何工作以及如何保持其余的users
物体不受影响。
当然我的代码是错的:)但我试过了
case types.UPDATE_ITEMS: {
return update(...state, {
[action.id]: { items: { $set: action.payload } }
});
}
这正是update
的用法,它将保持国家的其余部分不受影响。所以没有必要传播
case types.UPDATE_ITEMS:
return update(state, {
[action.id]: {
items: { $set: action.payload }
}
});
你可以使用其余的扩展运算符更新users
部分,如下所示:
case types.UPDATE_ITEMS:
return {
...state, // That will keep any other keys in the object besides 'users'
users: {
...state.users, // keep the part you want to keep from 'users',
[action.id]: {
...state.users[action.id], // keep the part you want from this user
items: [action.payload] // update the part you want
}
}
};