Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

90
Views
My example.downloadURL gives back an undefined

I am simply trying to test uploading images and I want to display the image, that is uploadoaded. My code looks like this:

function uploadFile(files){
    const storageRef = firebase.storage().ref(); //this references the firebase storage

    const horseRef = storageRef.child("horse.jpg");

    const file = files.item(0); //will return a list so lets take the first item

    const task = horseRef.put(file); //to upload the file we call the put file
    console.log(task);

    task.then(snapshot => { //returns a buncha data including a snapshot url
        const url = snapshot.downloadURL
        document.getElementById("upload").setAttribute("src", url)
    });

}

But the snapshot.downloadURL is giving back an undefined. Can you help me?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

There isn't any downloadURL property on the snapshot which is an UploadTaskSnapshot. You need to use getDownloadURL() method on the storage reference to get the URL. Try refactoring the code as shown below:

task.then(async (snapshot) => { 
  const url = await snapshot.ref.getDownloadUrl()
  document.getElementById("upload").setAttribute("src", url)
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!