reload
如果你想要 reload 這個 page 但是你不想要用 window.location 的方式可以試試此方法
private reload(): void {
let currentUrl = this.router.url;
this.router.onSameUrlNavigation = 'reload';
this.router.navigate([currentUrl]).then(() => {
this.router.onSameUrlNavigation = 'ignore';
});
}
type OnSameUrlNavigation = "reload" | "ignore";