私は、ルーティングの変更にサブスクライブ:ルーティングの変更を聞くにはどうすればいいですか?
public ngOnInit() {
this.subscription = this.activateRoute.params.subscribe(params => {
this.language = params['id'];
});
console.log(this.language);
}
しかし、私はクリックリンクによって配線経路を変更したときに、私はconsole.log(this.language);
を見ることはできません。表示されません。エラーはありません。
なぜですか?
[Anger Observable/http/async呼び出しからの応答をどのように返すのですか?](https://stackoverflow.com/questions/43055706/how-do-i-return-the-response- from-an-observable-http-async-call-in-angular2) – echonax
'params => {...} function'内で' console.log'を動かすだけです。 –