redux源码这个函数是什么意思?

const logger = store => next => action => {//这里是什么意思 箭头函数我懂 但是这个没理解
 console.log('dispatch:', action);
 next(action);
 console.log('finish:', action);
};

求解答这个是什么意思啊
logger = store => next => action =>{}
store,next,action是参数吗?但是没有显示传递啊?

阅读 3k
3 个回答

你知道箭头函数就好办了,看下面三段代码:

// 这是一个箭头函数
const A = action => {
  console.log('A')
}

// 这是一个箭头函数
const B = next => A;
// 等价于
const B = next => (action => {
  console.log('A')
})
// 展开写
const B = next => action => {
  console.log('A')
}

// 再来一层
const C = store => B
// 等价于
const C = store => next => action => {
  console.log('A')
}

希望对你有帮助

都是一层一层的函数

function logger(store) {
  return function (next) {
    return function (action) {};
  };
};

函数柯里化

你可以理解成这是一个返回值为函数的函数。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题