私は角度Httpについてちょっと混乱しています。観測変数の結果をクラス変数に代入したい。 subscribeの中にログインすると、クラス変数OKが出力されます。サブスクライブの外にログオンすると、空の配列が表示されます。クラス変数にどのように割り当てるのですか?Http Get - 状態を維持するには?
classes = [];
constructor(private navController:NavController, private httpService: HttpService) {
this.httpService.getCalendarConfig()
.subscribe((data) => {
this.classes = data;
console.log("inside" + this.classes);
});
console.log("outside" + this.classes);
私は私のクラスに割り当てるにはどうすればよい
[非同期呼び出しからの応答を返すにはどうすればよいですか?](http://stackoverflow.com/questions/14220321/how-do-i-return-the-response-from-an-asynchronous-コール) – deceze