如何在 redux 中更新特定数组项中的单个值
2022-08-30 02:59:58
我有一个问题,重新呈现状态会导致ui问题,并建议仅更新我的化简器中的特定值,以减少页面上的重新呈现量。
这是我的状态的例子
{
name: "some name",
subtitle: "some subtitle",
contents: [
{title: "some title", text: "some text"},
{title: "some other title", text: "some other text"}
]
}
我目前正在像这样更新它
case 'SOME_ACTION':
return { ...state, contents: action.payload }
其中 是包含新值的整个数组。但是现在我实际上只需要更新内容数组中第二项的文本,而这样的东西不起作用。action.payload
case 'SOME_ACTION':
return { ...state, contents[1].text: action.payload }
哪里现在是我需要更新的文本。action.payload