gpt4 book ai didi

angular - AuthGuard 在检查用户之前不会等待身份验证完成

转载 作者:太空狗 更新时间:2023-10-29 17:00:57 25 4
gpt4 key购买 nike

我在这里阅读了指南:https://angular.io/docs/ts/latest/guide/router.html

看起来很简单,但是,我不确定如何在 auth guard (canActivate) 中使用 angularfire2 的身份验证。我试过的是:

授权服务

import { Injectable } from '@angular/core';
import { AngularFire } from 'angularfire2';

@Injectable()
export class AuthService {

private user: any;

constructor(private af: AngularFire) {
this.af.auth.subscribe(user => {
this.user = user;
})
}

get authenticated(): boolean {
return this.user ? true : false;
}

}

AuthGuard

@Injectable()
export class AuthGuard implements CanActivate {

constructor(private router: Router, private authService: AuthService) { }

canActivate(): Observable<boolean> | boolean {
if (this.authService.authenticated)
return true;

this.router.navigate(['/login']);
return false;
}

}

我还向引导提供程序添加了 AuthService

这种工作正常,但是,我的主要问题是当我刷新(或最初加载)具有 AuthGuard 的页面时,它总是将我重定向到登录页面,因为 AuthGuard 不等待身份验证响应。有没有办法等待身份验证完成(即使它失败了),然后检查用户是否通过身份验证?

最佳答案

问题出在您的代码上。在 AuthGuard 中,您检查 authenticated() 方法的结果,该方法很可能会返回 false,因为用户属性仍未设置。试试这个:

授权服务:

import { Injectable } from '@angular/core';
import { AngularFire } from 'angularfire2';';
import { Observable } from 'rxjs/Observable';

@Injectable()
export class AuthService {

private user: any;

constructor(private af: AngularFire) { }
setUser(user) { this.user = user; }
getAuthenticated(): Observable<any> { return this.af.auth; }
}

AuthGuard:

@Injectable()
export class AuthGuard implements CanActivate {

constructor(private router: Router, private authService: AuthService) { }

canActivate(): Observable<boolean> | boolean {
// here check if this is first time call. If not return
// simple boolean based on user object from authService
// otherwise:

return this.authService.getAuthenticated.map(user => {
this.authService.setUser(user);
return user ? true : false;
})

}
}

关于angular - AuthGuard 在检查用户之前不会等待身份验证完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37897273/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com