-1
firebase storageで画像を参照するにはどうすればいいですか?私はそれを私のHTMLにimgタグで埋め込もうとしています。助けてくれてありがとう!ファイヤーベースのストレージでイメージをどのように参照しますか?
firebase storageで画像を参照するにはどうすればいいですか?私はそれを私のHTMLにimgタグで埋め込もうとしています。助けてくれてありがとう!ファイヤーベースのストレージでイメージをどのように参照しますか?
通常、これには、いわゆるダウンロードURLを使用します。 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);
});