の外を永続ない値は、私は角度のサービスでこのコードを持っている:アンギュラ4 - 購読
this.signInService.signIn(this.model).subscribe(user => {this.user = user,console.log(this.user.Username)});
console.log(this.user.Username);
私は2つのconsole.log
文を持っています。 subscribe
ファンクション内のファンクションが正しい値を出力します。ただし、2番目のconsole.log
は未定義値を出力します。
これは非同期です。応答が受信される前に2番目の 'console.log'が呼び出されます。 –