最佳答案
我有一个服务,返回一个可观察的,做一个 http 请求到我的服务器,并获得数据。我想使用这个数据,但我总是得到 undefined
。有什么问题吗?
服务 强 > :
@Injectable()
export class EventService {
constructor(private http: Http) { }
getEventList(): Observable<any>{
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
return this.http.get("http://localhost:9999/events/get", options)
.map((res)=> res.json())
.catch((err)=> err)
}
}
组成部分:
@Component({...})
export class EventComponent {
myEvents: any;
constructor( private es: EventService ) { }
ngOnInit(){
this.es.getEventList()
.subscribe((response)=>{
this.myEvents = response;
});
console.log(this.myEvents); //This prints undefined!
}
}
我检查了 如何从异步调用返回响应?后,但无法找到一个解决方案