我收到此错误:
index.js?dadc:6Uncaught TypeError: next is not a function
ReactJS中间件使用的下一个方法是否已被弃用,或者我是否错误地使用了它?
import { applyMiddleware, combineReducers , createStore } from 'redux';
const logger =(store) => (next) => (action) => {
console.log('middle-ware called');
next(action);
}
const reducer=(state ,action)=>{
if(action.type=='INC'){
console.log('a-----------------',action);
return state+action.payload;
}
else
return state; };
const store=createStore(reducer ,1 ,applyMiddleware(logger()));
store.subscribe(()=>{
console.log('store changed',store.getState()) });
store.dispatch({type :'INC' ,payload : 10}); store.dispatch({type :'INC' ,payload : 10});
答案 0 :(得分:4)
这是行不通的,因为你传递applyMiddleware
的{{1}}没有参数的logger()
。
要解决此问题,您必须将logger
而不是logger()
传递给applyMiddleware()
。
您可以阅读有关自定义中间件here
的更多信息