Error: Actions must be plain objects. Use custom middleware for async actions.
来源:5-8 使用 actionCreator 统一创建 action
西兰花伟大炮
2018-08-06
跟着视频敲完这节代码后,报了如上错误。
网上搜了下,提示没有配置 redux-thunk 这个中间件?
还是说,我哪里遗漏了...
"react": "^16.4.1", "redux": "^4.0.0"
actionCreators
import {CHANGE_INPUT_VALUE,ADD_LIST,DELETE_LIST} from './actionTypes' export const getValueAction = (value) => { type: CHANGE_INPUT_VALUE, value } export const getAddListAction = () => { type: ADD_LIST } export const getDeleteListAction = (index) => { type: DELETE_LIST, index }
报错截图:
写回答
3回答
-
哦哦,你是不是actionCreator没有返回对象啊,把actionCreator的代码发来我看下
012018-08-08 -
Dell
2018-08-07
你把错误截图我看下
012018-08-08 -
Dell
2018-08-06
npm install redux-thunk,然后做配置,你肯定忽略了redux-thunk这块的课程内容
012018-08-07
相似问题