본문 바로가기

Vue.js

Async & Network Throttling

728x90
반응형

서버 API 호출 부분 axios 및 async & await 활용

search () {
 axios.get('API 호출')
 	.then(res => {
       console.log(res.data)
    }
}
//위 내용을 아래처럼 변경 가능
async search () {
  const res = await axios.get('API 호출')
  console.log(res.data)  
}

 

크롬 브라우저에서 강제로 네트워크 느리게 조정 하는 방법

개발자 도구>Network>아래 Throttling 조절

 

 

728x90
반응형

'Vue.js' 카테고리의 다른 글

Vue 에서 바로 firestore 연결하기  (0) 2021.05.28
Typescript Serverless Project  (0) 2021.05.08
Vue Project 생성  (0) 2021.05.03