v2.1.0
版本发布时间: 2016-05-10 23:13:54
reduxjs/redux-thunk最新发布版本:v3.1.0(2023-12-04 21:57:13)
- Adds
withExtraArgument
for the cases when you want to inject a custom argument into all thunks. (#70)
const store = createStore(
reducer,
applyMiddleware(thunk.withExtraArgument(api))
)
// later
function fetchUser(id) {
return (dispatch, getState, api) => {
// you can use api here
}
}