Async - Await

베짱이·2021년 8월 6일
0

Vue

목록 보기
2/3
post-thumbnail

Async - Await

비동기 처리 패턴
async현재 사용할 함수를 비동기로 처리하겠다는 선언자.
await는 비동기로 순차 처리하기 위해서 수행할 API에 붙이는 선언자.

async testFunction() {
	const response = await axios.get('api/test')
	console.log(response)
}
profile
하루는 개발만 하기에는 너무 길다.

0개의 댓글