对于我的应用程序,我需要使用 List.json 来构建一个列表(我的应用程序的核心)。为了在我的所有组件之间共享这个列表,我决定创建一个服务。
在此服务中,我在构造函数中调用我的 json 文件,并使用 getter 在其他组件中获取此列表。但是当我调用 getter 时,构造函数还没有完成(http get 有点慢),它什么也没返回。(有一点超时,一切正常,但很脏)
构造函数完成后是否可以调用getter?
提前致谢 !
我的服务:
import {Injectable} from "angular2/core";
import {Http, Response, HTTP_PROVIDERS} from 'angular2/http';
@Injectable()
export class listService {
private list;
constructor(http: Http) {
http.get('app/List.json')
.map(res => res.json())
.subscribe(
data => this.list = data
);
}
getValue(){
return this.list;
}
}
我显示列表的组件:
import {listService} from './listService';
import {Component} from 'angular2/core';
import {RouteConfig, ROUTER_DIRECTIVES, Router} from 'angular2/router';
import 'rxjs/add/operator/map';
@Component({
selector: 'list',
template: `
<h2>Formations </h2>
<ul><li (click)='showItem(item)' *ngFor="#item of list"><span >{{item.Method}}</span></li></ul>
`,
directives: [ROUTER_DIRECTIVES]
})
export class List {
public list: Object[];
constructor(private listService:listService, private _router: Router) {
this.list = this.listService.getValue();
}
showItem(item){
this._router.navigate( ['Item', { id: item.id }] );
}
}