如何在firebase存储中引用图像?我正在尝试将其嵌入到img标签中的html中。谢谢你的帮助!
答案 0 :(得分:1)
您通常会使用所谓的下载网址。来自Firebase documentation on getting a download URL:
storageRef.child('images/stars.jpg').getDownloadURL().then(function(url) {
// Get the download URL for 'images/stars.jpg'
// This can be inserted into an <img> tag
var img = document.createElement('img');
img.setAttribute('src', url);
document.body.appendChild(img);
}).catch(function(error) {
console.error(error);
});