我可以成功地将文档保存在 firebase 中。
我现在想显示特定存储文件夹中包含的所有文档
但文档仅指定如何获取特定文档:
@Component({
selector: 'app-root',
template: `<img [src]="profileUrl | async" />`
})
export class AppComponent {
profileUrl: Observable<string | null>;
constructor(private storage: AngularFireStorage) {
const ref = this.storage.ref('users/davideast.jpg');
this.profileUrl = ref.getDownloadURL();
}
}