axios (1) 썸네일형 리스트형 [자바스크립트 js] axios axios fetch 함수 말고 Ajax를 통신할 수 있는 방법 axios 객체에서 request를 보내는 많은 메소드들이 fetch 함수처럼 promise 객체를 리턴한다. 사용법은 fetch 함수와 비슷하다 axios .get('https://tooktak.com/doit') .then((response) => { console.log(response); }) .catch((error) => { console.log(error); }); fetch 함수에는 없는 axios의 기능 및 장점 모든 request, response에 대한 공통 설정 및 공토된 전처리 함수 삽입 가능 serialization, deserialization을 자동으로 수행 특정 request에 대해 얼마나 오랫동안 respon..