Node.js
Async / Await
Ricerca…
introduzione
Async / await è un insieme di parole chiave che consente la scrittura di codice asincrono in modo procedurale senza dover fare affidamento su callback ( callback hell ) o promettere-concatenare ( .then().then().then()
).
Funziona usando la parola chiave await
per sospendere lo stato di una funzione asincrona, fino alla risoluzione di una promessa e usando la parola chiave async
per dichiarare tali funzioni asincrone, che restituiscono una promessa.
Async / await è disponibile da node.js 8 per impostazione predefinita o 7 utilizzando il flag --harmony-async-await
.
Funzioni asincrone con gestione degli errori Try-Catch
Una delle migliori caratteristiche della sintassi asincrona / attendi è che lo stile di codifica try-catch standard è possibile, proprio come se si stesse scrivendo il codice sincrono.
const myFunc = async (req, res) => {
try {
const result = await somePromise();
} catch (err) {
// handle errors here
}
});
Ecco un esempio con Express e promise-mysql:
router.get('/flags/:id', async (req, res) => {
try {
const connection = await pool.createConnection();
try {
const sql = `SELECT f.id, f.width, f.height, f.code, f.filename
FROM flags f
WHERE f.id = ?
LIMIT 1`;
const flags = await connection.query(sql, req.params.id);
if (flags.length === 0)
return res.status(404).send({ message: 'flag not found' });
return res.send({ flags[0] });
} finally {
pool.releaseConnection(connection);
}
} catch (err) {
// handle errors here
}
});
Confronto tra Promises e Async / Await
Funzione che usa le promesse:
function myAsyncFunction() {
return aFunctionThatReturnsAPromise()
// doSomething is a sync function
.then(result => doSomething(result))
.catch(handleError);
}
Quindi ecco quando Async / Await entrano in azione per rendere più pulita la nostra funzione:
async function myAsyncFunction() {
let result;
try {
result = await aFunctionThatReturnsAPromise();
} catch (error) {
handleError(error);
}
// doSomething is a sync function
return doSomething(result);
}
Quindi la parola chiave async
sarebbe simile a write return new Promise((resolve, reject) => {...}
.
E await
simile a ottenere il tuo risultato in then
richiamata.
Qui lascio una breve gif che non lascerà alcun dubbio in mente dopo averla vista:
Progressione da Callbacks
All'inizio c'erano i callback e le callback erano ok:
const getTemperature = (callback) => {
http.get('www.temperature.com/current', (res) => {
callback(res.data.temperature)
})
}
const getAirPollution = (callback) => {
http.get('www.pollution.com/current', (res) => {
callback(res.data.pollution)
});
}
getTemperature(function(temp) {
getAirPollution(function(pollution) {
console.log(`the temp is ${temp} and the pollution is ${pollution}.`)
// The temp is 27 and the pollution is 0.5.
})
})
Ma ci sono stati alcuni problemi davvero frustranti con i callback, quindi abbiamo iniziato a utilizzare le promesse.
const getTemperature = () => {
return new Promise((resolve, reject) => {
http.get('www.temperature.com/current', (res) => {
resolve(res.data.temperature)
})
})
}
const getAirPollution = () => {
return new Promise((resolve, reject) => {
http.get('www.pollution.com/current', (res) => {
resolve(res.data.pollution)
})
})
}
getTemperature()
.then(temp => console.log(`the temp is ${temp}`))
.then(() => getAirPollution())
.then(pollution => console.log(`and the pollution is ${pollution}`))
// the temp is 32
// and the pollution is 0.5
Questo è stato un po 'meglio. Alla fine, abbiamo trovato async / await. Che usa ancora promesse sotto il cofano.
const temp = await getTemperature()
const pollution = await getAirPollution()
Interrompe l'esecuzione in attesa
Se la promessa non restituisce nulla, l'attività asincrona può essere completata utilizzando await
.
try{
await User.findByIdAndUpdate(user._id, {
$push: {
tokens: token
}
}).exec()
}catch(e){
handleError(e)
}