Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

217
Vistas
Javascript FileReader onSuccess

I have a function that looks like this:

async handleFile(e){
        var file = e.target.files[0];
        var reader = new FileReader();
        reader.onload = async function(f){                
            await somelibrary.load(f.target.result)
            await somelibrary.render()
            await someotherlibrary.init()
        }
            await reader.readAsText(file);  
        
    }

I need to know if the load and render has worked, at least if they haven't thrown an exception. So my idea was to do something like this:

async handleFile(e){
        var file = e.target.files[0];
        var reader = new FileReader();
        reader.onload = async function(f){
            try {                
                await somelibrary.load(f.target.result)
                await somelibrary.render()
                await someotherlibrary.init()
                return true
            } catch (e) {
                console.log(e);
                return false
            }
        }
        var rendered = await reader.readAsText(file);  
        console.log(rendered)
        
    }

But this only logs undefined. I understand why, my function only waits for the reading part and not for the actual handling of the content in the .onload... But how do I do this correctly?

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda