什么时候需要redux-thunk中间件
在未引入redux-thunk,store.dispatch(action)的action只能是对象,dispatch只是把action传给reducer。
引入redux-thunk后,store.dispatch(action)的action可以是函数,在action里可以调接口获取数据,再传给store。
准备工作
npm install –save redux-thunk
入口文件: store/index.js
1 | import { createStore, applyMiddleware, compose } from 'redux' |
模块书写
1 | // store/page/reducer.js |