17. react redux的中间件

mjzhang 2019-12-03

1. redux 数据流程图

17. react redux的中间件

View 会派发一个 Action

Action 通过 Dispatch 方法派发给 Store

Store 接收到 Action 连同之前的 State 发给  Reducer 生成新的 State

Redux 的 中间件指的是 Action 和 Store 之间

  中间件 即指的是 对 Dispatch 方法的封装 或 升级

  通过使用 redux-thunk 如果 Action 传递给 Store 的方法是一个函数

    它会让函数先执行, 执行完了需要调用Store 再去调用 Store

相关推荐

jiangcs0 / 0评论 2020-04-19

空谷足音 / 0评论 2019-04-28