我正在使用 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