redux-组合函数(compose)理解
详解
redux 提供了 applyMiddleware 这个 api 来加载 middleware,两者联系如下:
组合的中中间件函数如下:
function thunk({ dispatch, getState }) {
return next => action =>
typeof action === 'function' ?
action(dispatch, getState) :
nex