axios1 [Axios] interceptors Axios interceptors는 then 또는 catch로 처리되기 전에 요청과 응답을 가로챌수 있다 import axios from 'axios'; 요청 전 axios.interceptors.request.use( (config) => { // 요청이 전달되기 전에 작업 수행 return config; }, (error) => { // 요청 오류가 있는 작업 수행 return Promise.reject(error); }, ); 응답 전 axios.interceptors.response.use( (response) => { // 응답 데이터가 있는 작업 수행 return response; }, (error) => { // 응답 오류가 있는 작업 수행 if (error.response?.status =.. 2023. 9. 26. 이전 1 다음