我试图创建一个处理我所有 APIS 的中间件。
存储配置
在我的商店中,我正在添加 apiMiddleware 以使用[CALL_API]
. 除此之外,我还使用 extraArgument 添加了 redux-thunk 来访问我在调度方法中创建的通用 API。
export default function configureStore(initialState) {
const store=createStore(
rootReducer,
initialState,
compose(
applyMiddleware(apiMiddleware,thunk.withExtraArgument(api))))
return store
}
减速器
const initialState = {
data : []
}
export default function users(state=initialState,action){
switch(action.type){
case 'RECEIVE_USER_DATA':
return Object.assign({},state,{
data : action.payload
})
case 'FAILURE_USER_DATA':
return state
default:
return state;
}
}
行动
export function fetchUserData(){
return (dispatch,getState,api) => {
const url = 'https://jsonplaceholder.typicode.com/users/';
const method = 'GET'
const actionTypes = ['REQUEST_USER_DATA','RECEIVE_USER_DATA','FAILURE_USER_DATA']
api(url,method,actionTypes)
}
}
中间件 API
export default function api(url,method,actions){
return {
[CALL_API] : {
endpoint : url,
method : method,
types: actions
}
}
}
这是行不通的。但是,如果我将中间件代码放在我的操作函数下,它就可以正常工作。