AngularFireStorage-如何设置项目列表的downloadURL

时间:2018-07-11 15:15:23

标签: firebase firebase-storage angularfire2

我正在查询一个集合,其中的每个文档都有一个关联的图像。我正在使用的angularfirestorage片段在设置一个图像时效果很好,但是,当我有一个列表时,它们最终都具有相同的图像。

如何确保每个文档中的每个图像在HTML中具有正确的绑定?

myPhoto: Observable<string | null>;
...
   this.albums = this.albumCollection.snapshotChanges().pipe(
      map(actions => actions.map(a => {
        const data = a.payload.doc.data();
        const id = a.payload.doc.id;
        var image = myPhoto;
        const ref = this.storage.ref(image);
        this.myPhoto = ref.getDownloadURL();
        return { id, ...data };
      }))
    );



<div [ngStyle]="{'background-image': 'url(' + (myPhoto | async)  + ')'}"></div>

1 个答案:

答案 0 :(得分:0)

这有效:

代替

this.myPhoto = ref.getDownloadURL();

我使用:

data.myPhoto = ref.getDownloadURL();