Here is the image of the error
我正在尝试为我的webste实现authGuard。但是,当我干扰错误代码时,应用程序回拨办公室并发送错误。
请帮帮我!。
我的AuthGuard.ts
public canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean {
// L'utilisateur est identifié, on accède à la page demandée
if (Tools.isIE()) {
this.router.navigate(['/redirect']);
return false;
} else {
if (localStorage.getItem('currentUser')) {
return true;
}
this.router.navigate(['/login']);
return false;
}
}
}