本文介绍了Firebase控制台中不存在下载URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
firebase存储的文件位置中没有URL.相反,它提供了一个存储路径.请帮忙.在此处输入图片描述
There is no url present in the file location of firebase storage. Instead it gives a storage path. Please help.enter image description here
推荐答案
通过Firebase SDK将文件添加到Cloud Storage时,下载URL不会/不再自动生成.相反,您必须调用 getDownloadURL()
生成这样的下载URL.然后,该URL也将显示在Firebase控制台中.
Download URLs are not/no longer automatically generated when you add a file to Cloud Storage through the Firebase SDK. Instead you will have to call getDownloadURL()
to generate such a download URL. This URL will then also show up in the Firebase console.
这篇关于Firebase控制台中不存在下载URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!