我在react / redux应用程序中使用axios
,当我收到401,404等错误时,当我调用axios时,我当前必须为每个动作函数处理它们。我有一个axios_config.js,其中我用一些常见的习语包裹了axios调用。例如:
// need to move this to app config
const BASE_URL = 'http://localhost:8080/api/';
function config() {
return {
headers: {'X-Token-Auth': localStorage.getItem('token')}
}
}
export function fetchData(url) {
return axios.get(`${BASE_URL}${url}`, config());
};
我在苦苦挣扎的是401,404等常见错误。目前,我这样做:
export function fetchBrands() {
return function(dispatch) {
dispatch({type:FETCHING_BRANDS});
fetchData('brands')
.then(response => {
dispatch({
type: FETCH_BRANDS_SUCCESS,
payload: response
});
})
.catch(err => {
// deal with errors
});
}
}
但在catch
区块,我不想每次都要处理401,404等。因此,我需要能够在更全球范围内处理这些问题,但仍然能够处理请求的特定错误,例如服务器端验证错误。
答案 0 :(得分:24)
您可以在axios文档中使用响应拦截器作为文档。
axios.interceptors.response.use(undefined, function (error) {
if(error.response.status === 401) {
ipcRenderer.send('response-unauthenticated');
return Promise.reject(error);
}
});
答案 1 :(得分:0)
您可以尝试编写一个接受函数的函数,并返回附加了catch的函数。您甚至可以传递一个可选的辅助参数来执行本地catch逻辑。
然后可以将其移动到单个文件中,您可以随时修改它。
export function fetchBrand(id) {
return function (dispatch) {
wrapCatch(
fetchData(`brands/${id}`)
.then(response => {
dispatch({
type: FETCH_BRAND_SUCCESS,
payload: response
});
}),
function (err) {
// deal with errors
}
);
}
}
export function wrapCatch(f, localErrors) {
return f.catch(err => {
// deal with errors
localErrors();
});
}
希望这有帮助。