Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

218
Visualizações
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 à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda