在 Reducer文件里,对于返回的结果,要注意哪些问题?

terry React 235

在 Reducer文件里,对于返回的结果,必须要使用 Object.assign ( )来复制一份新的 state,否则页面不会跟着数据刷新。

return Object. assign ( { }, state, {
  type:action .type,
  shouldNotPaint : true
})
  • 暂无回复内容