perf-router/request

This commit is contained in:
Huang 2022-06-15 14:41:19 +08:00
parent 799a3dcb7f
commit 60d94aeca9
7 changed files with 10 additions and 14 deletions

View File

@ -1,5 +1,3 @@
'use strict';
function InterceptorManager(): void {
// @ts-ignore
this.handlers = [];

View File

@ -1,5 +1,3 @@
'use strict';
import isAbsoluteURL from '../helpers/isAbsoluteURL';
import combineURLs from '../helpers/combineURLs';

View File

@ -1,5 +1,3 @@
'use strict';
import * as utils from '../utils';
function encode(val: string | number | boolean) {

View File

@ -1,5 +1,3 @@
'use strict';
/**
* Creates a new URL by combining the specified URLs
*

View File

@ -1,5 +1,3 @@
'use strict';
/**
* Determines whether the specified URL is absolute
*

View File

@ -1,5 +1,3 @@
'use strict';
// utils is a library of generic helper functions non-specific to axios
const toString = Object.prototype.toString;

View File

@ -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;