gxd-uni-library-editx 1.0.92 → 1.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/utils/helper.js +8 -2
package/package.json
CHANGED
package/src/utils/helper.js
CHANGED
|
@@ -956,7 +956,9 @@ class Helpers {
|
|
|
956
956
|
handleTo(obj = {}, redirect, type = true, notHistory = false) {
|
|
957
957
|
|
|
958
958
|
//检查地址是否合法性
|
|
959
|
+
let reg = /^(http:\/\/|https:\/\/|\/\/).+$/;
|
|
959
960
|
obj.url = this.checkValidateUrl(obj.url);
|
|
961
|
+
|
|
960
962
|
//console.log(this.checkValidateUrl('//sandbox-website-05.jufubao.cn/apply06/main/cake/index?x-common=eyJidXNpbmVzc19jb2RlIjoiY2FrZSJ9&vs=1721740600007'))
|
|
961
963
|
//console.log(this.checkValidateUrl('/main/cake/index1?x-common=eyJidXNpbmVzc19jb2RlIjoiY2FrZSJ9&vs=1721740600007'))
|
|
962
964
|
//console.log(this.checkValidateUrl('//sandbox-website-05.jufubao.cn/apply/main/cake/index1?x-common=eyJidXNpbmVzc19jb2RlIjoiY2FrZSJ9&vs=1721740600007'))
|
|
@@ -1007,10 +1009,14 @@ class Helpers {
|
|
|
1007
1009
|
obj.url = this.replacePathForDir(obj.url);
|
|
1008
1010
|
|
|
1009
1011
|
//设置检查访问地址
|
|
1010
|
-
let reg = /^(http:\/\/|https:\/\/|\/\/).+$/;
|
|
1011
1012
|
//检查网络链接是不是当前应用中的一个路径
|
|
1012
1013
|
if(reg.test(obj.url)) {
|
|
1013
|
-
|
|
1014
|
+
let newUrl = this.parseUrlSameAppUrl(obj.url);
|
|
1015
|
+
//使用redirectTo时候并且是一个内容地址转化为使用navigateTo模式
|
|
1016
|
+
if(!type && !reg.test(newUrl)) {
|
|
1017
|
+
type = true;
|
|
1018
|
+
}
|
|
1019
|
+
obj.url = newUrl;
|
|
1014
1020
|
}
|
|
1015
1021
|
let isH5 = reg.test(obj.url);
|
|
1016
1022
|
|