4
0
mirror of https://github.com/iczer/vue-antd-admin.git synced 2025-04-05 19:42:00 +08:00

fix: the problem of disable cache of dynamic route; 🐛

修复:动态路由配置禁用缓存无效问题;
This commit is contained in:
iczer 2023-01-12 18:14:59 +08:00
parent c0aec854af
commit 6000da4220

View File

@ -301,7 +301,7 @@ export default {
routes.forEach(item => {
const cacheAble = item.meta?.page?.cacheAble ?? pCache ?? true
if (!cacheAble) {
this.excludeKeys.push(new RegExp(`${item.path}\\d+$`))
this.excludeKeys.push(new RegExp(`${item.path.replace(/:[^/]*/g, '[^/]*')}\\d*$`))
}
if (item.children) {
this.loadCacheConfig(item.children, cacheAble)