mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
perf-router/request
This commit is contained in:
parent
799a3dcb7f
commit
60d94aeca9
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
function InterceptorManager(): void {
|
function InterceptorManager(): void {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
this.handlers = [];
|
this.handlers = [];
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
import isAbsoluteURL from '../helpers/isAbsoluteURL';
|
import isAbsoluteURL from '../helpers/isAbsoluteURL';
|
||||||
import combineURLs from '../helpers/combineURLs';
|
import combineURLs from '../helpers/combineURLs';
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
import * as utils from '../utils';
|
import * as utils from '../utils';
|
||||||
|
|
||||||
function encode(val: string | number | boolean) {
|
function encode(val: string | number | boolean) {
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new URL by combining the specified URLs
|
* Creates a new URL by combining the specified URLs
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether the specified URL is absolute
|
* Determines whether the specified URL is absolute
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
// utils is a library of generic helper functions non-specific to axios
|
// utils is a library of generic helper functions non-specific to axios
|
||||||
|
|
||||||
const toString = Object.prototype.toString;
|
const toString = Object.prototype.toString;
|
||||||
|
@ -47,10 +47,18 @@ function addInterceptor(routerName: string) {
|
|||||||
success: (res: any) => {},
|
success: (res: any) => {},
|
||||||
// 失败回调拦截
|
// 失败回调拦截
|
||||||
fail: (err: 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('页面不存在');
|
Toast('页面不存在');
|
||||||
|
const go = err.errMsg.replace(reg, '$3') || '';
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: `${NOT_FOUND_PAGE}?redirect=${HOME_PAGE}`,
|
url: `${NOT_FOUND_PAGE}?redirect=${HOME_PAGE}&go=${go}`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user