0

在 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();
}

任何有关如何显示自定义通知的提示将不胜感激。

4

1 回答 1

2

也许您可以使用以下链接作为解决问题的阶段https://github.com/marmelab/admin-on-rest/issues/180 祝您好运!

于 2017-06-16T21:55:37.670 回答