我目前正在Ionic中构建一个应用程序,我从我要显示的firebase数据库中获取数据。我想要显示帖子,这些帖子有一些文字,一个标题,可能还有一个imgurl。本质上,我想循环遍历多个数组并分别显示这三个东西,但我不能用ngFor做到这一点。我不能使用索引变量,因为我无法通过angularfire2中的“id”获取项目。
import {FirebaseListObservable } from '...'
constructor (private fbs: FirebaseService){
fbs.getPosts(); // returns a FirebaseListObservable from a defined service
fbs.getTitles();
fbs.getImgUrl();
}
HTML
<ion-card *ngFor = 'let post of posts' >
<ion-card-header> // here i want to have the title associated with the first post</ion-card-header>
<ion-card-content>{{post.$value}}</ion-card-content>¨
<img src = //here i want to have the img appropiate to the post>
</ion-card>