问题
This is the entire code to upload a image and get the download url The image are uploaded successfully but the download url is not printed
<html>
<head>
<title> firebase save</title>
<style media="screen">
body{
display : flex;
min-height: 100vh;
width : 100%;
padding : 0;
margin:0;
align-items: center;
justify-content: center;
flex-direction: column;
}
#uploader{
-webkit-appearance: none;
appearance: none;
width: 50%;
margin-bottom: 10px;
}
</style>
</head>
<body>
<progress value="0" max = "100" id="uploader" > 0%</progress>
<input type = "file" value="upload" id="fileButton" />
<script src="https://www.gstatic.com/firebasejs/4.9.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
//firebase initialization
};
firebase.initializeApp(config);
var uploader = document.getElementById('uploader');
var fileButton = document.getElementById('fileButton');
fileButton.addEventListener('change' , function(e) {
var file= e.target.files[0];
var storageRef = firebase.storage().ref('pics/' + file.name);
var task = storageRef.put(file); // <--- See the difference here
task.on('state_changed' ,
function progress(snapshot){
var percentage = (snapshot.bytesTransferred / snapshot.totalBytes) * 100;
uploader.value = percentage;
},
function error(err){
},
function complete(){
}
);
});
</script>
<script>
snapshot.ref.getDownloadURL().then(function(downloadURL) {
console.log("pics/1.jpg", downloadURL);
document .writeln(downloadURL);
});
</script>
</body>
</html>
This is the output of the code
once the image is uploaded i want the download URL to be printed
i also tried this method
snapshot.ref.getDownloadURL().then(function(downloadURL) {
console.log("pics/1.jpg", downloadURL);
});
This show the error as mentioned as the console pic what changes should i make in this code to print the download URL This is how my storage looks like
来源:https://stackoverflow.com/questions/60114775/firebase-storage-get-download-url-after-image-upload-successfully-to-firebase-st