Fetch와 Axios는 둘다 특정 url에서 데이터를 불러오고 promise를 반환한다. 그렇다면 둘의 차이점은 무엇일까? 언제 axios를 써야할까?
fetch('url')
.then((response) => {
// ...
})
.catch((error) => {
// ...
});
axios.get('url')
.then((response) => {
// ...
})
.catch((error) => {
// ...
})