17. react redux的中间件
Posted zonehoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了17. react redux的中间件相关的知识,希望对你有一定的参考价值。
1. redux 数据流程图
View 会派发一个 Action
Action 通过 Dispatch 方法派发给 Store
Store 接收到 Action 连同之前的 State 发给 Reducer 生成新的 State
Redux 的 中间件指的是 Action 和 Store 之间
中间件 即指的是 对 Dispatch 方法的封装 或 升级
通过使用 redux-thunk 如果 Action 传递给 Store 的方法是一个函数
它会让函数先执行, 执行完了需要调用Store 再去调用 Store
!-- p.p1>
以上是关于17. react redux的中间件的主要内容,如果未能解决你的问题,请参考以下文章
React 和 Redux:管理 Redux 自定义中间件列表
Redux和React-Redux的实现:中间件的原理和applyMiddlewareThunk的实现
React-redux 项目 - 链式依赖异步调用不适用于 redux-promise 中间件?