我发现许多例子,其中 ActivatedRoute
观察,如 params
或 url
是订阅,但没有取消订阅。
constructor(private route: ActivatedRoute) {}
ngOnInit() {
this.route.params
// (+) converts string 'id' to a number
.switchMap((params: Params) => this.service.getHero(+params['id']))
.subscribe((hero: Hero) => this.hero = hero);
}
Observable
的订阅吗?Router
.routerState
中 ActivatedRoute 对象树会发生什么情况吗?