“Async await class component React” Ответ

ждать поберека в React

async function fetchFunction() {
  try{
	const response = await fetch(`http://url.com`);
	const json = await response.json();
  }
  catch(err) {
    throw err;
    console.log(err);
  }
}
Doubtful Dugong

ждать в реагировании в функциональном компоненте

const here = async () => {
	console.log("here we go");
}
Cautious Cod

Async await class component React

  async componentDidMount() {
    // when react first renders then it called componentDidMount()
    const response = await fetch('https://jsonplaceholder.typicode.com/users');
    const json = await response.json();
    console.log(json);
  }
paramjeetdhiman

Ответы похожие на “Async await class component React”

Вопросы похожие на “Async await class component React”

Больше похожих ответов на “Async await class component React” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования