mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix(fes-core): 修复模糊匹配对"/"路由判断失效
This commit is contained in:
parent
d599d2dd67
commit
47f67e54f1
945
packages/fes-cli/package-lock.json
generated
945
packages/fes-cli/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -7,21 +7,22 @@ import event from './event';
|
|||||||
import history from './history';
|
import history from './history';
|
||||||
|
|
||||||
const util = {
|
const util = {
|
||||||
// 验证一个path是否可以访问, 空的allowPage可以访问任何路由
|
// 验证一个path是否可以访问
|
||||||
canRoute(path, allowPage) {
|
canRoute(path, allowPage) {
|
||||||
path = path.split('?')[0];
|
path = path.split('?')[0];
|
||||||
if (Array.isArray(allowPage) && allowPage.length > 0) {
|
if (Array.isArray(allowPage) && allowPage.length > 0) {
|
||||||
if (path === '' && allowPage.includes('/')) return true;
|
// 当路由为“/"时,传入的path为“”
|
||||||
if (path) {
|
if (path === '') {
|
||||||
for (let i = 0; i < allowPage.length; i++) {
|
path = '/';
|
||||||
if (path === allowPage[i]) {
|
}
|
||||||
return true;
|
for (let i = 0; i < allowPage.length; i++) {
|
||||||
}
|
if (path === allowPage[i]) {
|
||||||
// 支持*匹配
|
return true;
|
||||||
const reg = new RegExp(`^${allowPage[i].replace('*', '.+')}$`);
|
}
|
||||||
if (reg.test(path)) {
|
// 支持*匹配
|
||||||
return true;
|
const reg = new RegExp(`^${allowPage[i].replace('*', '.+')}$`);
|
||||||
}
|
if (reg.test(path)) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -84,5 +85,13 @@ const util = {
|
|||||||
},
|
},
|
||||||
_
|
_
|
||||||
};
|
};
|
||||||
objectUtil.merge(util, domUtil, objectUtil, typeUtil, { format }, { event }, { history });
|
|
||||||
export default util;
|
export default {
|
||||||
|
...util,
|
||||||
|
...domUtil,
|
||||||
|
...objectUtil,
|
||||||
|
...typeUtil,
|
||||||
|
format,
|
||||||
|
event,
|
||||||
|
history
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user