在redux中兼并reducer的时刻有用到compose这个函数将多个reducer合成一个,那末这个compose函数该怎样完成呢?
function compose(...fns) { //fns是传入的函数
const fn = fns.pop();
return (...args) => {
fn(...args);
if (fns.length > 0) {
compose(...fns);
}
};
}
在redux中兼并reducer的时刻有用到compose这个函数将多个reducer合成一个,那末这个compose函数该怎样完成呢?
function compose(...fns) { //fns是传入的函数
const fn = fns.pop();
return (...args) => {
fn(...args);
if (fns.length > 0) {
compose(...fns);
}
};
}