async function fetchJson
async function getUserAsync(name) { let response = await fetch(`https://api.github.com/users/${name}`); let data = await response.json() return data; } getUserAsync('yourUsernameHere') .then(data => console.log(data));
async function fetchJson
async function getUserAsync(name) { let response = await fetch(`https://api.github.com/users/${name}`); let data = await response.json() return data; } getUserAsync('yourUsernameHere') .then(data => console.log(data));
async fetch api call
async function getUserAsync(name) { try{ let response = await fetch(`https://api.github.com/users/${name}`); return await response.json(); }catch(err){ console.error(err); // Handle errors here } }
await fetch in react
async function fetchFunction() { try{ const response = await fetch(`http://url.com`); const json = await response.json(); } catch(err) { throw err; console.log(err); } }
How to fetch data from an api async and await
async function fetchData() { try { const result = await axios.get("https://randomuser.me/api/") console.log(result.data)); } catch (error) { console.error(error); } }
async and await
function delayResult() { return new Promise(resolve => { setTimeout(() => { resolve(‘Done’); }, 5000) }) } async function getResult() { let result = await delayResult(); return result; } getResult();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us