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

120
Vistas
How to check/debug state of individual promises in a promise.all

I'm shoving a bunch of script nodes with no src attribute into an array of promises that sets the src and then resolves or rejects, respectively onload or onerror. All of these are called in a Promise.all which I await. The problem is, it never stops waiting. I presume some of the individual promises are resolving or rejecting, but I can't figure out how to debug which ones aren't.

  function loadScript (script) {
    return new Promise(function(resolve, reject) {
      // this happens for every script
      script.setAttribute("src", script.getAttribute("data-src"));
      script.onload = _ => resolve(script.src);
      script.onerror = _ => reject(script.src);
    });
  }
  
  // loadScripts : (graph, int) -> (string array) promise
  async function loadScripts(g, order = 1) {
    if (!g.has(order))
      return []
    else
      return [
        ...await Promise.all(g.get(order).map(loadScript)),
        // the script stops here after the first pass and never executes the
        // next line. It just ... awaits the previous line
        ...await loadScripts(g, order + 1)
      ]
  }

I got to this point by setting breakpoints in Chrome devtools and stepping, but I'm not sure, once we're sitting and awaiting, how to check the state of the individual promises, to see which ones are resolving and which are still pending.

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