我正在开发一个angular4应用程序。 我的Component.ts看起来像:
ngOnInit() {
this.http.get('http://localhost:4000/data/').subscribe(data => this.temp = data);
// this.temp1 = JSON.parse(this.temp)
console.log(this.temp)
}
在控制台上,我对 this.temp
进行“未定义”答案 0 :(得分:1)
像这样写
你的console.logthis.http.get('http://localhost:4000/data/').subscribe(data => {this.temp = data; console.log(this.temp)});