redux中applyMiddleware源码,中文注释

栏目: 服务器 · 发布时间: 6年前

内容简介:理解applyMiddleware需要跟createStore结合.首先来看createStore是怎样创建store的.再来看createStore 的源码

理解applyMiddleware需要跟createStore结合.首先来看createStore是怎样创建store的.

redux中applyMiddleware源码,中文注释

再来看createStore 的源码

redux中applyMiddleware源码,中文注释

createStore的第三个参数enhancer就是applyMiddleware,此时createStore会返回enhancer(createStore)(reducer, preloadedState),也就是createStore在中间件里面去执行了

applyMiddleware返回的是函数A(也就是applyMiddleware(...middlewares) =函数A,然后又跑到createStore里面作为第三个参数),所以能把createStore作为参数传进去

redux中applyMiddleware源码,中文注释

一个小例子,测试返回函数后是什么东西

redux中applyMiddleware源码,中文注释

import compose from './compose'

/**
 * Creates a store enhancer that applies middleware to the dispatch method
 * of the Redux store. This is handy for a variety of tasks, such as expressing
 * asynchronous actions in a concise manner, or logging every action payload.
 *
 * 创建一个redux store的dispatch方法使用中间件的store增强器.  对于不同的人任务,这将会
 * 非常方便,比如可以用非常简单的方式进行异步操作,或者输出action的payload
 * 
 * See `redux-thunk` package as an example of the Redux middleware.
 *查看`redux-thunk`包作为一个redux中间件的例子
 *
 * Because middleware is potentially asynchronous, this should be the first
 * store enhancer in the composition chain.
 *
 * 因为中间件默认是异步的,这应该是合成链中的第一个store增强器
 * 
 * Note that each middleware will be given the `dispatch` and `getState` functions
 * as named arguments.
 *注意每个中间件都会以`dispatch` and `getState`方法作为参数
 * @param {...Function} middlewares The middleware chain to be applied.提供的中间件
 * @returns {Function} A store enhancer applying the middleware.store增强器应用的中间件
 */
export default function applyMiddleware(...middlewares) {
  return (createStore) => (reducer, preloadedState, enhancer) => {
    const store = createStore(reducer, preloadedState, enhancer)
    let dispatch = store.dispatch
    let chain = []

    const middlewareAPI = {
      getState: store.getState,
      dispatch: (action) => dispatch(action)
    }
    chain = middlewares.map(middleware => middleware(middlewareAPI))
    dispatch = compose(...chain)(store.dispatch)

    return {
      ...store,
      dispatch
    }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

参与的胜利

参与的胜利

亨利·詹金斯 / 高芳芳 / 浙江大学出版社 / 2017-9-30 / CNY 42.00

《参与的胜利:网络时代的参与文化》是一场学者之间的对话,三位学者(亨利·詹金斯、伊藤瑞子和丹娜·博伊德)虽然来自不同的代际、不同的学科背景,但他们在相同的参与文化项目中展开合作,并试图解决相似的问题。 希望《参与的胜利:网络时代的参与文化》能够进一步激发团体内部及团体之间的对话,这些团体包括教育者、政策制定者、学者、关注参与文化的公民、业内人士、粉丝及其他任何关心我们文化的未来的人。理想的参......一起来看看 《参与的胜利》 这本书的介绍吧!

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具