async / await 썼을때 안썼을때 응답?

togongs·2022년 8월 6일
0

2022

목록 보기
8/19
const api = () => {
  ~~~
  let res = fetch(url, { headers: header });
  console.log("res", res);
};

api();

js는 동기적실행이 된다
api호출에 시간이 걸림
결과는?

const api = async () => {
  ~~~
  let res = await fetch(url, { headers: header });
  console.log("res", res);
};

api();

await 으로 api호출을 강제로 기다린다
데이터 값을 받아오면 다시 실행

profile
개발기록

0개의 댓글