在Angular中,当使用Http服务进行网络请求时,可以使用subscribe方法来订阅返回的Observable对象。在订阅的回调函数中,可以分配返回的数据给组件中的变量。
以下是一个示例代码解决的方法:
import { Http } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
constructor(private http: Http) { }
getData() {
this.http.get('https://api.example.com/data')
.map(response => response.json())
.subscribe(data => {
// 分配返回的数据给组件中的变量
this.myVariable = data;
});
}
在上述代码中,订阅方法中的回调函数会将返回的数据分配给组件中的变量this.myVariable。请注意,这里使用的是箭头函数,以确保回调函数中的this指向组件实例。
希望这个解决方法对你有帮助!