问题是当我在两个相似的URL之间导航时,我的组件没有重新绘制。例如,当用户查看http://localhost:8088/#/app/route/study/6/detail
然后导航到http://localhost:8088/#/app/route/study/7/detail
时,StudyComponent
会正确重新加载。但是,DetailComponent
未重新加载。我认为原因是细节的params
没有改变,因此Angular认为不重新加载是可以的。但在我的情况下,细节取决于父参数。
我该如何解决这个问题?
我的路线:
const studyRoutes: Routes = [
{
path: '', component: RouteComponent,
children: [
{path: 'study/:id', component: StudyComponent,
children: [
{path: 'detail', component: DetailComponent },
{path: 'parts', component: PartsComponent }
]
}
]
}
];
我的所有组件都是这样初始化的:
ngOnInit() {
this.loader = this.route.params.subscribe(params => this.onLoad());
}
ngOnDestroy() {
this.loader.unsubscribe();
}
当我在不同研究的详细信息之间导航时,onLoad
中永远不会调用DetailComponent
。
答案 0 :(得分:1)
要对:id
级DetailComponent
参数的更改作出反应,您需要进行以下更改:
// detail.component.ts
ngOnInit() {
this.loader = this.route.parent.params.subscribe(params => this.onLoad());
}
这是因为您的路径中的路径detail
不会定义:id
参数,它的父路径就是这样。因此,更改将反映在路由器状态树中的该级别。