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
Converting call back to async/await functions

I'm trying to concert a callback function to stand chained functions, but could not manage it,

the callback function is:

db.transaction(
 function(t){
  t.executeSql("SELECT * FROM cal_list where calories > ?" ,[min_cal_amount], function(t,r){
     for (var i=0; i < r.rows.length; i++){
      food = r.rows.item(i).food;
      amount_of_calories = r.rows.item(i).amount_of_calories;
      serving_size = r.rows.item(i).serving_size;           
        
      list.innerHTML +="<li>"+food+" has "+amount_of_calories+" KCAL worth of calories.</li>";
                    
        }
    }, 
            
    function(t,e){alert(e.message);})
}
);

How can I convert to to async..await or try..then..catch?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

If your database library exposes db.transaction and t.executeSQL in a promise based api, it would look roughly like this:

async function getResults() {

    const transaction = await db.transaction();

    try {
        const result = await transaction.executSql(
            'SELECT * FROM cal_list where calories > ?',
            [min_cal_amount]
        );

        for (var i = 0; i < result.rows.length; i++) {
            // work with result data
        }
    }
    catch (e) {
        // rollback transaction, handle error as appropriate
    }
}

If your library does not expose those functions in a promise based api, you can use util.promisify to wrap those functions that expect a callback, and then use the above snippet.

about 4 years ago · Juan Pablo Isaza Denunciar
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