Redux学习笔记

Action

  • Action是 store 数据的唯一来源
  • 定义 action type 常量不是必须,但对于大型项目而言,利大于弊
  • 应该尽量减少在 action 中传递的数据

Reducer

不能做:

  • 修改传入参数;
  • 执行有副作用的操作,如 API 请求和路由跳转;
  • 调用非纯函数,如 Date.now() 或 Math.random()。

Store

原文地址:https://www.cnblogs.com/testopsfeng/p/14205347.html