Определители маршрута Angular 2+ не вызывают
Я настроил класс AuthResolve, чтобы убедиться, что аутентификация завершена до отображения маршрута, но по какой-то причине решатель не вызывается. ни функция распознавателя, ни конструктор. Консоль не регистрирует журналы, которые я вставил. Я не понимаю, как это может быть.
Маршруты корневого уровня:
export const appRoutes: Routes = [
{
path: '',
component: CallbackComponent,
canActivate: [AuthGuardService],
pathMatch: 'full',
resolve: {
auth: AuthResolve,
},
},
{
path: 'applicant', component: ApplicantViewComponent,
canActivate: [AuthGuardService],
children: [...applicantRoutes],
resolve: {
agency: AgencyResolve,
mapping: SectionMappingResolve,
auth: AuthResolve,
},
},
{
path: 'agency', component: AgencyViewComponent,
canActivate: [AuthGuardService],
children: [...agencyRoutes],
resolve: {
agency: AgencyResolve,
mapping: SectionMappingResolve,
auth: AuthResolve,
},
},
{
path: 'tos', component: TosComponent,
canActivate: [AuthGuardService],
resolve: {
auth: AuthResolve,
},
},
{
path: 'eua', component: EuaComponent,
canActivate: [AuthGuardService],
resolve: {
auth: AuthResolve,
},
}
];
Auth-resolve.ts:
@Injectable()
export class AuthResolve implements Resolve<User> {
constructor(private authService: AuthService) {
console.log('AuthResolve.constructor');
}
resolve(route: ActivatedRouteSnapshot): Observable<User> {
console.log('AuthResolve.resolve');
const authHandle = this.authService.handleAuthentication()
authHandle.subscribe(() => {
this.authService.scheduleRenewal();
});
return authHandle;
}
}
Почему моим распознавателям не звонят?
1 ответ
Решение
Удалите следующее из вашего первого маршрута:
canActivate: [AuthGuardService]