gpt4 book ai didi

redux-toolkit - 将项目添加到 redux-toolkit 中的嵌套数组

转载 作者:行者123 更新时间:2023-12-03 20:56:27 27 4
gpt4 key购买 nike

Redux Toolkit 在尝试更新嵌套数组上的状态时给了我突变错误,我认为它是使用 immer 来解决这个问题并简化 reducer。

我的商店看起来像:

状态 -> 表单 -> 部分

我想向现有表单添加一个部分。

我的行动有一个形式和一个部分

reducer 看起来像

let intialState={
forms:[]
}

const FormsReducer = createReducer(intialState, {
ADD_SECTION: (state, action) => {
const index = state.forms.findIndex(f => f.id === action.form.id);
state.forms[index].__formSections.push(action.payload);
},

A state mutation was detected inside a dispatch, in the path: FormsReducer.forms.0.__formSections.0



然而,根据 redux-toolkit 文档,应该可以“编写“可变的”不可变更新逻辑……

我做错了什么,我该如何解决?

最佳答案

如果您在不从 reducer 中变异的情况下返回它,则不会发生错误


const FormsReducer = createReducer(intialState, {
ADD_SECTION: (state, action) => {
const newstate = {...state}
const index = newstate.forms.findIndex(f => f.id === action.form.id);
newstate.forms[index].__formSections.push(action.payload);
return newstate
},

关于redux-toolkit - 将项目添加到 redux-toolkit 中的嵌套数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60778712/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com