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:
parent
c0aec854af
commit
6000da4220
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user