Vue.js
Async & Network Throttling
eastsky21
2021. 5. 5. 16:16
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
반응형