我想将component.ts数据存储到另一个变量,我想转换为全局变量

时间:2018-04-06 10:52:35

标签: angular angular2-template angular2-services angular2-directives

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数据存储在另一个变量

1 个答案:

答案 0 :(得分:0)

在您的班级中声明数据成员并使用它,并且为了共享数据,您可以使用@input()装饰器@output装饰器或使用服务。

    export class AppComponent {
      constructor(){}
      public data=[];//


    ngOnInit()
    { this.service.get_update(this.user).subscribe(data => this.data=data);
}