我在反应应用程序中使用 axios 拦截器时遇到问题。我想实现在我的反应应用程序中只放置一次标头令牌。所以这就是为什么我把它放在拦截器里。同时,我也希望只有一个声明来获取错误。所以我不需要在每个页面中显示错误。我想知道我在下面的代码中是否正确使用它?有没有办法缩短它,因为我要声明两次响应和请求?
export function getAxiosInstance() {
if (axiosInstance === null) {
axiosInstance = axios.create({
baseURL: API_URL,
});
}
axiosInstance.interceptors.request.use(
(config) => {
if (config.baseURL === API_URL && !config.headers.Authorization) {
const token = store.getState().auth.access_token;
if (token) {
config.headers.Authorization = `Bearer ${token}`;
console.log(config);
}
}
return config;
},
(error) => {
console.log(error);
store.dispatch(setAPIErrorMessage(error.message));
return Promise.reject(error);
}
);
axiosInstance.interceptors.response.use(
(config) => {
if (config.baseURL === API_URL && !config.headers.Authorization) {
const token = store.getState().auth.access_token;
if (token) {
config.headers.Authorization = `Bearer ${token}`;
console.log(config);
}
}
return config;
},
(error) => {
console.log(error);
store.dispatch(setAPIErrorMessage(error.message));
return Promise.reject(error);
}
);
return axiosInstance;
}
你不需要在 interceptors.response 中设置授权标头,你只需要在请求拦截器中设置这个。
您可以在闭包函数(使用操作调度(中声明错误处理,以避免重复自己。
我还建议避免直接在 axios 实例中处理错误。您可以使用 https://github.com/reduxjs/redux-thunk 定义异步 redux 操作,并在 redux 级别处理网络错误(使用 fetchBegin、fetchSuccess、fetchFailure 操作模式(。然后 axios 设置和 redux 设置将不再耦合,这将允许您在将来更改这些工具。