0
firebase関数から値を設定するためにローカル変数を使用しましたが、動作しません。私は、このコードは、次のURLを返しますが、私はfirebaseオブジェクトを読み取る方法がわからない:ネストされたfirebase関数からのダウンロードURLを返します
export var downloadFile = (folderName, fileName) => {
// Create a reference to the file we want to download
var starsRef = storageRef.child(`${folderName}/${fileName}`);
// Get the download URL
return starsRef.getDownloadURL().then((url) => {
// Insert url into an <img> tag to "download"
return url
})
}
にはどうすればURLを返すことができるか、どのように私はfirebaseオブジェクトを読み取ることができます