Angular-在canActivate之前解析可观察的数据

时间:2018-07-31 00:59:20

标签: angular authentication observable resolve canactivate


我正在使用Angular开发Web应用程序,但遇到了问题。 有一个登录用户的身份验证服务。我正在向发送请求 具有凭据的服务器并等待响应。问题是我  尝试从登录组件导航到主页组件  的

  login(formValues) {
    this.auth.logInUser(formValues.username, formValues.password)
    .subscribe(response =>{
      if(!response){
        this.invalidLogin=true;
      } else {
        this.router.navigate(['stream']);
      }
    })
  }

但是其他每个组件都有一个canActivateGuard  检查当前用户是否已登录(我正在从服务器等待的数据)。

export const appRoutes: Routes = [
    {path: 'login', resolve: LiveStreamResolver, component: LoginComponent},
    {path: 'reports', component: ReportsComponent, resolve: LiveStreamResolver, canActivate: [AuthGuardService]},
    {path: 'calendar', component: CalendarComponent, resolve: LiveStreamResolver, canActivate: [AuthGuardService]},
    {path: 'stream', component: LiveStreamComponent},
    {path: '', redirectTo: 'login', pathMatch: 'full'}
];

constructor(public auth: AuthenticationService) { }

  canActivate(): boolean {
    return !!this.auth.currUser;
  }

在canActivate检查完成之前,有没有办法解决?可能还有其他解决方案吗?
欢迎其他有关如何保护组件的建议:D

2 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,这就是我的解决方法。

您可以从canActivate方法返回Observable<boolean>。尝试返回Observable而不是纯布尔值。

另外,另一个选择是,您可以返回诺言。

看看CanActivate

这是代码示例:

AuthenticationService

    @Injectable()
    export class AuthenticationService {

        private isAuthenticatedSubject = new ReplaySubject<boolean>(0);
        public isAuthenticated = this.isAuthenticatedSubject.asObservable();

    constructor() { }

    /* Call this method once user successfully logged in. It will update the isAuthenticatedSubject*/
    setAuth() {
       this.isAuthenticatedSubject.next(true);
     }

   }

AuthgaurdService

@Injectable()
export class AuthgaurdService implements CanActivate {

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

    canActivate(route: ActivatedRouteSnapshot,state: RouterStateSnapshot): Observable<boolean> {
        // this will return Observable<boolean>
        return this.authService.isAuthenticated.pipe(take(1));
    }
}

答案 1 :(得分:0)

您可以使用obervable,这是一个示例:

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

canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | boolean {
    if (this.authService.isLoggedIn()) {
        return true;
    }
    this.router.navigate(['/login']);
    return false;
}