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

129
Vistas
Async function not waiting for other async to resolve

I admit that I still do not fully fathom async/promises as you can probably gather from my code but how am I supposed to get my function to wait for checkImageRatio in this circumstance.

async function checkImageRatio(id){
    let myPromise = new Promise(function(resolve) {
        let test = false;
        $(`#image-${id}`).find('img').each(async function(){
            let img = new Image();

            img.src = this.src;
            await img.decode();

            console.log((img.width/img.height));

            if(Math.abs(1 - img.width/img.height) > 0.02){
                $(`#image-${id}-main-image`).css('border', '1px red solid');
                $(`#${id}-warning`).effect('shake', {distance: 8, times: 2}, 200);
                test = true;
            }
        });
        resolve(test); 
    })
}

async function saveProduct(id){
  var imageTest = await checkImageRatio(id).then(result=>{return result});
  console.log(imageTest);
  console.log("here");
}

Why is image test not resolving here??

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