是否可以在Angular中停止NavigationStart?我试图提示自定义确认模式,如果用户试图改变路线。
constructor(private router: Router) {
if(val instanceof NavigationStart){
//prompt the confirmation modal and stop NavigationStart or at least
make it wait until user performs any action
}
}