操作不能具有未定义的“类型”属性。你把常数拼错了吗?
{ type : ..., payload : {...}}
. 此外,在浏览器控制台中打印的对象
有
我是这样建立商店的:
const logger = store => next => action => {
console.log(action);
return next(store, action);
}
const store = createStore(
reducer,
applyMiddleware(logger));
export default store;
我被卡住了。