mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
perf-router/request
This commit is contained in:
parent
799a3dcb7f
commit
60d94aeca9
@ -1,5 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
function InterceptorManager(): void {
|
||||
// @ts-ignore
|
||||
this.handlers = [];
|
||||
|
@ -1,5 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
import isAbsoluteURL from '../helpers/isAbsoluteURL';
|
||||
import combineURLs from '../helpers/combineURLs';
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
import * as utils from '../utils';
|
||||
|
||||
function encode(val: string | number | boolean) {
|
||||
|
@ -1,5 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Creates a new URL by combining the specified URLs
|
||||
*
|
||||
|
@ -1,5 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* 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
|
||||
|
||||
const toString = Object.prototype.toString;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user