Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- NVM
- NextJs
- input error
- CPU와 GPU의 차이점
- next/link
- 향해99
- 회고록
- Node
- 원티드프리온보딩
- 프로젝트
- Til
- git
- Client-Side Navigation
- Mac OS NVM
- react portal
- Passed by Value
- jsEvent Loop
- react
- toast err
- 유령 의존성
- JavaScript
- JS
- 원티드인턴십
- 광고지구
- 알고리즘
- 원티트 프리온보딩인턴십 1주차
- Redux
- 식별자란
- 인풋태그 엔터
- CloudFront 무효화
Archives
- Today
- Total
목록interceptors (1)
SUIN
[TIL] interceptors.response 전역 error toast 처리
현재 진행하는 프로젝트에서 어드민 페이지의 전역 에러 처리 담당을 하게 되었다 각 api response 값이 다양하게 들어오기대문에 해당 res data의 vlaue 값을 별도로 뽑아주는 작업을 진행하여야 했다. react-toastify 라이브러리를 통해 toast 팝업을 띄워 주었으며 코드는 다음과 같다. import { toast } from "react-toastify"; axiosInstance.interceptors.response.use( (response) => response, (error) => { const { response } = error; if (response) toast.error(`${Object.values(response.data)[0]}`, { // toast 스타..
TIL
2022. 11. 4. 15:48