您正在使用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>
有没有人有想法,它没有出错?