Ajax 통신을 할 수 있게 해주는 외부 패키지이다.
axios .get('https://jsonplaceholder.typicode.com/users') .then((response) => { console.log(response); }) .catch((error) => { console.log(error); });
fetch가 axios.get으로 변경된 것을 제외하면 사용법이 똑같다.
fetch
axios.get