我正在尝试编写一个看似简单的方法来获取我的 Angular 应用程序的用户个人资料详细信息,并在使用解析器导航到个人资料页面之前加载该数据。. 即使没有错误,解析器也没有完成这是我的解析器类代码:
export class ProfileResolverService implements Resolve<Observable<any>> {
constructor(private fs: FirestoreService, private auth:AuthService) { }
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot){
return this.auth.user.pipe(take(1),
mergeMap(userdata => {
return this.fs.getUserProfile(userdata.uid) //get user profile returns Observable<unknown[]>
})
)
}
}
在我的路由模块中:
path: 'profile',
children: [
{
path: '',
resolve: {
userdata: ProfileResolverService
},
loadChildren: () => import('../profile/profile.module').then( m => m.ProfilePageModule)
}
任何人都可以请帮忙。坚持了2天