Node.js
Async / Await
Zoeken…
Invoering
Async / await is een set trefwoorden waarmee asynchrone code op een procedurele manier kan worden geschreven zonder afhankelijk te zijn van callbacks ( callback hell ) of belofte-chaining ( .then().then().then()
).
Dit werkt door het sleutelwoord await
te gebruiken om de status van een async-functie await
te schorten, totdat een belofte is async
, en het async
sleutelwoord te gebruiken om dergelijke async-functies te declareren, die een belofte teruggeven.
Async / await is standaard beschikbaar bij node.js 8 of 7 met de vlag --harmony-async-await
.
Async-functies met Try-Catch-foutafhandeling
Een van de beste eigenschappen van async / await syntax is dat standaard try-catch coderingsstijl mogelijk is, net zoals je synchrone code aan het schrijven was.
const myFunc = async (req, res) => {
try {
const result = await somePromise();
} catch (err) {
// handle errors here
}
});
Hier is een voorbeeld met Express en belofte-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
}
});
Vergelijking tussen Beloften en Async / Wachten
Functie met behulp van beloften:
function myAsyncFunction() {
return aFunctionThatReturnsAPromise()
// doSomething is a sync function
.then(result => doSomething(result))
.catch(handleError);
}
Dus hier is wanneer Async / Await in actie komt om onze functie schoner te krijgen:
async function myAsyncFunction() {
let result;
try {
result = await aFunctionThatReturnsAPromise();
} catch (error) {
handleError(error);
}
// doSomething is a sync function
return doSomething(result);
}
Het sleutelwoord async
zou dus hetzelfde zijn als het schrijven van een return new Promise((resolve, reject) => {...}
.
En await
soortgelijke om uw resultaat te krijgen in then
callback.
Hier laat ik een vrij korte gif die geen enkele twijfel in gedachten zal laten na het zien:
Vooruitgang door terugbelverzoeken
In het begin waren er callbacks en callbacks waren goed:
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.
})
})
Maar er waren een paar echt frustrerende problemen met callbacks, dus we begonnen allemaal beloften te gebruiken.
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
Dit was een beetje beter. Uiteindelijk vonden we async / wachten. Die nog steeds gebruik maakt van beloften onder de motorkap.
const temp = await getTemperature()
const pollution = await getAirPollution()
Stopt uitvoering bij wachten
Als de belofte niets oplevert, kan de async-taak worden voltooid met await
.
try{
await User.findByIdAndUpdate(user._id, {
$push: {
tokens: token
}
}).exec()
}catch(e){
handleError(e)
}