Buscamos en el mundo online para mostrarte la respuesta para tu duda, si continúas con alguna difcultad puedes dejarnos la inquietud y contestaremos con gusto, porque estamos para ayudarte.
Ejemplo 1: llamada async fetch api
asyncfunctiongetUserAsync(name)trylet response =awaitfetch(`https://api.github.com/users/$name`);returnawait response.json();catch(err)console.error(err);// Handle errors here
Ejemplo 2: buscar en espera
asyncfunctiongetUserAsync(name)let response =awaitfetch(`https://api.github.com/users/$name`);let data =await response.json()return data;getUserAsync('yourUsernameHere').then(data=>console.log(data));
Ejemplo 3: async awiat
constdata=async()=>const got =awaitfetch('https://jsonplaceholder.typicode.com/todos/1');console.log(await got.json())data();
Ejemplo 4: js async await
/* Notes:
1. written like synchronous code
2. compatible with try/catch blocks
3. avoids chaining .then statements
4. async functions always return a promise
5. function pauses on each await expression
6. A non promise value is converted to
Promise.resolve(value) and then resolved
*/// Syntax// Function DeclarationasyncfunctionmyFunction()await...// some code goes here// Arrow DeclarationconstmyFunction2=async()=>await...// some code goes here// OBJECT METHODSconst obj =asyncgetName()returnfetch('https://www.example.com');// IN A CLASSclassObj// getters and setter CANNOT be asyncasync getResource returnfetch('https://www.example.com');
Si haces scroll puedes encontrar las notas de otros desarrolladores, tú también tienes la habilidad dejar el tuyo si lo crees conveniente.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)