根据我已阅读的文档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(); ...
这里有两件事是错误的。