在 authClient.js
if (type === AUTH_ERROR) {
const { status } = params;
if (status === 401) {
localStorage.removeItem('token');
return Promise.reject();
}
if (status === 403) {
// Show custom notification here on the Snackbar
}
return Promise.resolve();
}
任何有关如何显示自定义通知的提示将不胜感激。