thomas0yang 2019-06-25
bindActionCreators
是redux
提供的一个辅助方法,能够让我们以方法的形式来调用action
。同时,自动dispatch
对应的action
。这个模块的代码十分简单,只要大家明白了Function.prototype.apply
的使用,就能够很清晰的理解这个模块中的每一行代码。因为,这个模块设计到的内容有点少,所以我们就直接分析源码。
function bindActionCreator(actionCreator, dispatch) { // 这个函数的主要作用就是返回一个函数,当我们调用返回的这个函数的时候,就会自动的dispatch对应的action // 这一块其实可以更改成如下这种形式更好 // return function(...args) {return dispatch(actionCreator.apply(this, args))} return function() { return dispatch(actionCreator.apply(this, arguments)) } }
/** 参数说明: actionCreators: action create函数,可以是一个单函数,也可以是一个对象,这个对象的所有元素都是action create函数 dispatch: store.dispatch方法 */ export default function bindActionCreators(actionCreators, dispatch) { // 如果actionCreators是一个函数的话,就调用bindActionCreator方法对action create函数和dispatch进行绑定 if (typeof actionCreators === 'function') { return bindActionCreator(actionCreators, dispatch) } // actionCreators必须是函数或者对象中的一种,且不能是null if (typeof actionCreators !== 'object' || actionCreators === null) { throw new Error( `bindActionCreators expected an object or a function, instead received ${actionCreators === null ? 'null' : typeof actionCreators}. ` + `Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?` ) } // 获取所有action create函数的名字 const keys = Object.keys(actionCreators) // 保存dispatch和action create函数进行绑定之后的集合 const boundActionCreators = {} for (let i = 0; i < keys.length; i++) { const key = keys[i] const actionCreator = actionCreators[key] // 排除值不是函数的action create if (typeof actionCreator === 'function') { // 进行绑定 boundActionCreators[key] = bindActionCreator(actionCreator, dispatch) } } // 返回绑定之后的对象 /** boundActionCreators的基本形式就是 { actionCreator: function() {dispatch(actionCreator.apply(this, arguments))} } */ return boundActionCreators }
这就是对bindActionCreators
源码的一个整体解读,水平有限,欢迎拍砖。后续的源码解读和测试例子可以关注:redux源码解读仓库