Я использую приложение angular-tour-of-heroes, и я столкнулся с методом.subscribe в маршрутизации. Может кто-нибудь объяснить, что происходит здесь?
Ссылка для app- https://embed.plnkr.co/?show=preview
Внутри файла hero-detail.component.ts,
ngOnInit(): void {
this.route.paramMap
.switchMap((params: ParamMap) => this.heroService.getHero(+params.get('id')))
.subscribe(hero => this.hero = hero);
}