7-6这节,老师您在reducer里直接操作了state,没有拷贝噢
来源:7-6 使用 React-Redux 进行应用数据的管理
慕函数20528
2018-11-26
const newState = JSON.parse(JSON.stringify(state));
newState.focused = false;
return newState;
写回答
1回答
-
Dell
2018-11-28
这不就是拷贝么,parse和stringify
122018-11-28
相似问题