AUTH_ERROR的自定义通知,状态403

时间:2017-06-16 20:50:13

标签: admin-on-rest

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

非常感谢任何有关如何展示自定义通知的提示。

1 个答案:

答案 0 :(得分:2)

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