在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();
}
非常感谢任何有关如何展示自定义通知的提示。