diff --git a/src/utils/http/core/InterceptorManager.ts b/src/utils/http/core/InterceptorManager.ts index d9ba0fc..97e88f7 100644 --- a/src/utils/http/core/InterceptorManager.ts +++ b/src/utils/http/core/InterceptorManager.ts @@ -1,5 +1,3 @@ -'use strict'; - function InterceptorManager(): void { // @ts-ignore this.handlers = []; diff --git a/src/utils/http/core/buildFullPath.ts b/src/utils/http/core/buildFullPath.ts index e0c3c98..e6fdcf4 100644 --- a/src/utils/http/core/buildFullPath.ts +++ b/src/utils/http/core/buildFullPath.ts @@ -1,5 +1,3 @@ -'use strict'; - import isAbsoluteURL from '../helpers/isAbsoluteURL'; import combineURLs from '../helpers/combineURLs'; diff --git a/src/utils/http/helpers/buildURL.ts b/src/utils/http/helpers/buildURL.ts index 5e612ad..8ef8a66 100644 --- a/src/utils/http/helpers/buildURL.ts +++ b/src/utils/http/helpers/buildURL.ts @@ -1,5 +1,3 @@ -'use strict'; - import * as utils from '../utils'; function encode(val: string | number | boolean) { diff --git a/src/utils/http/helpers/combineURLs.ts b/src/utils/http/helpers/combineURLs.ts index c56add6..f52808b 100644 --- a/src/utils/http/helpers/combineURLs.ts +++ b/src/utils/http/helpers/combineURLs.ts @@ -1,5 +1,3 @@ -'use strict'; - /** * Creates a new URL by combining the specified URLs * diff --git a/src/utils/http/helpers/isAbsoluteURL.ts b/src/utils/http/helpers/isAbsoluteURL.ts index 31f729c..47d8a8e 100644 --- a/src/utils/http/helpers/isAbsoluteURL.ts +++ b/src/utils/http/helpers/isAbsoluteURL.ts @@ -1,5 +1,3 @@ -'use strict'; - /** * Determines whether the specified URL is absolute * diff --git a/src/utils/http/utils.ts b/src/utils/http/utils.ts index d19f324..3f681cc 100644 --- a/src/utils/http/utils.ts +++ b/src/utils/http/utils.ts @@ -1,5 +1,3 @@ -'use strict'; - // utils is a library of generic helper functions non-specific to axios const toString = Object.prototype.toString; diff --git a/src/utils/router/interceptor.ts b/src/utils/router/interceptor.ts index 2247b0c..52d22c4 100644 --- a/src/utils/router/interceptor.ts +++ b/src/utils/router/interceptor.ts @@ -47,10 +47,18 @@ function addInterceptor(routerName: string) { success: (res: any) => {}, // 失败回调拦截 fail: (err: any) => { - if (err.errMsg.includes(`${routerName}:fail page`)) { + /* #ifdef MP-WEIXIN */ + let reg = /(.*)?(fail page ")(.*)(" is not found$)/; + /* #endif */ + /* #ifndef MP-WEIXIN */ + reg = /(.*)?(fail page `)(.*)(` is not found$)/; + /* #endif */ + console.log(reg.test(err.errMsg)); + if (reg.test(err.errMsg)) { Toast('页面不存在'); + const go = err.errMsg.replace(reg, '$3') || ''; uni.navigateTo({ - url: `${NOT_FOUND_PAGE}?redirect=${HOME_PAGE}`, + url: `${NOT_FOUND_PAGE}?redirect=${HOME_PAGE}&go=${go}`, }); } return false;