我想知道是否可以订阅更改对象,即数组.我的用例如下:用户重新加载一个页面,需要加载整个集合,然后获取一个具有特定id的对象.据我所知,我可以创建一个这样的函数:
在构造函数中:
this.getById(id);
和功能
getById(id: string){ this.object = this.objectsService.getById(id); if (this.object.name){ //check if object exist //Do something } else { setTimeout(()=>{ this.getById(id) },1000); } }
但是,我觉得这不是最好的事情.所以,我想做的是这样的事情:
let objects = this.objectService.getObjects() // returns object that will hold the collection; objects.subscribe((value) => { if(value.length) { //Do something } });
您可以存储对数据数组的引用,而不是Observable.例如,当http服务的调用返回Observable时,您可以这样做
原文链接:https://www.f2er.com/angularjs/141122.htmlfunction getObjects:Promise<Item[]>{ return this.http.get(this.apiUrl) .toPromise() .then(this.extractData) } private extractData(res: Response) { let body = res.json(); return body.data || { }; }
在组件类中,您可以存储如下数据:
this.objectService.getObjects().then(items=> this.items = items);
接下来,当您需要通过其ID获取项目时,您可以执行以下操作:
let currentItem = this.items.filter(x=> x.id == currentId)