错误响应状态:401确定URL

时间:2018-04-03 12:37:13

标签: angular angular-fullstack

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;
        }
    }
}

0 个答案:

没有答案