Ionic 3 img src函数绑定冻结了应用程序

时间:2018-02-17 14:51:21

标签: angular ionic-framework ionic3 firebase-storage

您正在使用AngularFireStorage,但我的应用程序冻结没有任何错误。

内容

showPhoto(refUrl) {
        const ref = this.storage.ref(`images/${refUrl}`);
        return ref.getDownloadURL().toPromise().then(img => {
        return img;
    });
}

HTML

<div class="image-container" *ngFor="let photo of photos | photofilter">
    <img [src]="showPhoto(photo.image)">
</div>

有没有人有想法,它没有出错?

0 个答案:

没有答案