Unverified Commit 74c40379 authored by jiang's avatar jiang Committed by GitHub

401 不需要提示请求错误。

parent 569f1cd9
...@@ -32,11 +32,6 @@ const errorHandler = error => { ...@@ -32,11 +32,6 @@ const errorHandler = error => {
const errortext = codeMessage[response.status] || response.statusText; const errortext = codeMessage[response.status] || response.statusText;
const { status, url } = response; const { status, url } = response;
notification.error({
message: `请求错误 ${status}: ${url}`,
description: errortext,
});
if (status === 401) { if (status === 401) {
notification.error({ notification.error({
message: '未登录或登录已过期,请重新登录。', message: '未登录或登录已过期,请重新登录。',
...@@ -48,6 +43,10 @@ const errorHandler = error => { ...@@ -48,6 +43,10 @@ const errorHandler = error => {
}); });
return; return;
} }
notification.error({
message: `请求错误 ${status}: ${url}`,
description: errortext,
});
// environment should not be used // environment should not be used
if (status === 403) { if (status === 403) {
router.push('/exception/403'); router.push('/exception/403');
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment