我正在尝试为我的路由器实现 authGuard。但是当我干扰错误代码时,应用程序实际上会中断。我不知道如何解决它。需要帮助。
我的 AuthGuard
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | boolean {
return this._auth.validate()
.map((isValidated) => {
if (isValidated && localStorage.getItem('authToken') && this.checkCookie()) {
return true;
}
this.router.navigate(['/login'], { queryParams: { returnUrl: state.url } });
return false;
});
}
我的身份验证服务
@Injectable()
export class AuthService {
loginStatus;
constructor(private http: Http, private _apiEndPoint: ApiEndPoint, private router: Router) { }
validate() {
return this.http.get(this._apiEndPoint.validate)
.map(
(response: Response) => {
const result = response.json();
// check authentication status from response
if (result.authenticated) {
return true;
} else {
return false;
}
})
.catch(error => Observable.throw(error));
}
}
我收到此错误,未捕获(承诺):状态为 401 未授权 URL 的响应。
当我收到该错误时,我的页面全部空白。