我正在将 angular 2 组件转换为使用异步数据源。
当 <div class="col s4" *ngFor="let line of lines; let i = index;">
是一个对象数组时,我有一个 lines
工作,但是,行现在是一个对象数组的 Observable。
这会导致错误:
然而,我尝试了 <div class="col s4" *ngFor="let line of lines | async; let i = index;">
,这似乎没有什么区别。
我该如何处理?
最佳答案
这是一个绑定(bind)到可观察数组的示例。如果您也发布了 Controller /组件代码,那将会很有帮助。
@Component({
selector: 'my-app',
template: `
<div>
<h2>Wikipedia Search</h2>
<input type="text" [formControl]="term"/>
<ul>
<li *ngFor="let item of items | async">{{item}}</li>
</ul>
</div>
`
})
export class App {
items: Observable<Array<string>>;
term = new FormControl();
constructor(private wikipediaService: WikipediaService) {
this.items = this.term.valueChanges
.debounceTime(400)
.distinctUntilChanged()
.switchMap(term => this.wikipediaService.search(term));
}
}
http://blog.thoughtram.io/angular/2016/01/07/taking-advantage-of-observables-in-angular2-pt2.html
Using an array from Observable Object with ngFor and Async Pipe Angular 2
上面问题的答案是这样的:
// in the service
getItems(){
return Observable.interval(2200).map(i=> [{name: 'obj 1'},{name: 'obj 2'}])
}
// in the controller
Items: Observable<Array<any>>
ngOnInit() {
this.items = this._itemService.getItems();
}
// in template
<div *ngFor='let item of items | async'>
{{item.name}}
</div>
关于node.js - ngFor 与 Observables?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41448950/