正在获取firebase getDownloadURL返回

问题描述 投票:0回答:1

根据我已阅读的文档ref.getDownloadURL();,应该返回可以在img src中使用的链接。

这是我的代码:这就是我启动火力场的方法:

this.storage = app.storage();
storageRef = img => this.storage.ref(img);

然后我这样称呼它:

const householdPics = (data, props) => {
  const ref = props.firebase.storageRef(`images/${data.profilePic}`);
  const img = ref.getDownloadURL();
  console.log(img);
}

data.profilePic等于something.jpg。我可以确认它存储在Firebase的名为>>的目录中

images/

我在控制台中收到的错误是:

"Firebase Storage: Object 'images/NULL' does not exist."

从firebase,我可以复制路径:gs://urlstuff.com/images然后列出了我所有的图像。

我在做什么错?

根据我已阅读ref.getDownloadURL()的文档;应该返回我可以在img src中使用的链接。这是我的代码:这是我启动firebase的方式:this.storage = app.storage(); ...

javascript firebase firebase-storage
1个回答
0
投票

这里有两件事是错误的。

© www.soinside.com 2019 - 2024. All rights reserved.