Async Await
날짜 : 2023-10-24 14:01
태그 : #프로그래밍언어
내용
async await
async
- 비동기 함수의 시작을 명시하는 키워드
await
- 함수의 종료까지 line 실행을 기다리는 키워드
사용법
<button
onClick={async () => {
try{
const response = await axios.get(URL);
setData(response.data);
}
catch (error){
console.error(error);
}
}}
>
{: .notice}
데이터패치
</button>
댓글남기기