我很好奇我们在当前页面中使用router.navigate时会调用哪个生命周期挂钩,可以说重新加载页面。
constructor(private router: Router) { }
reload () {
this.router.navigate(['/currentpage']);
}
答案 0 :(得分:1)
这是序列
答案 1 :(得分:0)
使用
this.router.navigate(['/currentpage']);
仅在/currentpage
上触发 AfterViewChecked 。