반응형 Error Handling1 AxiosError를 핸들링하는 3가지 방법 1. try-catch문을 이용한 핸들링 try-catch문을 이용하면 비동기 함수에서 발생한 예외를 쉽게 처리할 수 있습니다. Axios에서는 요청을 보내는 함수가 비동기 함수이므로, try-catch문을 이용하면 AxiosError를 쉽게 핸들링할 수 있습니다. 따라서, AxiosError를 핸들링하기 위해 try-catch문을 사용하는 것이 가장 직관적이고 간단한 방법입니다. try { await axios.get('/api/some-data'); } catch (error) { if (axios.isAxiosError(error)) { console.log(error.response?.data); } else { console.log(error.message); } } 2.catch() 메소드를 .. 2023. 3. 18. 이전 1 다음 반응형