从消防存储(同一文件夹)中获取所有图像-Ionic 4

时间:2019-09-07 23:25:12

标签: firebase ionic-framework ionic4

我正在使用Ionic v4,所以我试图从Firebase存储中获取所有图像,但我只是找不到一种方法来获取所有图像。

我正试图从名为“图像”的文件夹中获取它们并显示它们。

getImage(){
    firebase.storage().ref().child("/images/").getDownloadURL()
        .then((url) =>
            this.image = url;
        )
        .catch(error =>
            console.log('error:', error);
        );
  }

我无法获取文件夹的url,但要获取其中的所有图像,请先感谢。

0 个答案:

没有答案