const routes: Routes = [
{
path: 'main',
loadChildren: () => import('./main/main.module').then(x => x.MainModule),
canActivate: [AuthGuard]
},
{path: 'sub', loadChildren: () => import('./sub/sub.module').then(x => x.SubModule)},
];
例如这样的 route ,从 main/123
用 this.router.navigate
跳转 sub/456
时,如果没有同时更新两个包的话浏览器总是会加载缓存的旧版本SubModule
,必须要刷新。
1
edis0n0 OP |