get_update(id:any): Observable<any[]>{
let headers = new Headers({ 'Content-Type': 'application/json'});
let options = new RequestOptions({ headers: headers });
return this.http.get('http://localhost:8000/vendor/'+id,options)
.map(response => response.json())
.catch(error => Observable.throw(error.statusText));
}
component.ts
ngOnInit()
{ this.service.get_update(this.user).subscribe(data => console.log(data));
}
component.ts数据存储在另一个变量
中答案 0 :(得分:0)
在您的班级中声明数据成员并使用它,并且为了共享数据,您可以使用@input()
装饰器@output
装饰器或使用服务。
export class AppComponent {
constructor(){}
public data=[];//
ngOnInit()
{ this.service.get_update(this.user).subscribe(data => this.data=data);
}