为了账号安全,请及时绑定邮箱和手机立即绑定

redux中间件的pending success有意义吗

redux中间件的pending success有意义吗

德玛西亚99 2018-12-31 04:00:46
redux中间件的pending success有意义吗 
查看完整描述

1 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

dispatch(action) 等于 composedABC(action) 等于执行 function A(action) {...}
在函数 A 中执行 next(action), 此时 A 中 next 为 composedBC,那么等于执行 composedBC(action) 等于执行function B(action){...}
在函数 B 中执行 next(action), 此时 B 中 next 为 composedC,那么等于执行 composedC(action) 等于执行function C(action){...}
在函数 C 中执行 next(action), 此时 C 中 next 为 store.dispatch 即 store 原生的 dispatch, 等于执行store.dispatch(action)
store.dispatch 会执行 reducer 生成最新的 store 数据
所有的 next 执行完过后开始回溯
执行函数 C 中 next 后的代码
执行函数 B 中 next 后的代码
执行函数 A 中 next 后的代码

整个执行 action 的过程为 A -> B -> C -> dispatch -> C -> B -> A

查看完整回答
反对 回复 2019-01-06
  • 1 回答
  • 0 关注
  • 722 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信