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 |
Tags
- Passed by Value
- toast err
- Til
- input error
- 원티드프리온보딩
- JavaScript
- CPU와 GPU의 차이점
- 식별자란
- react
- 프로젝트
- 향해99
- NextJs
- JS
- 원티트 프리온보딩인턴십 1주차
- git
- 광고지구
- Mac OS NVM
- 인풋태그 엔터
- 유령 의존성
- Client-Side Navigation
- 회고록
- next/link
- NVM
- 알고리즘
- CloudFront 무효화
- 원티드인턴십
- Node
- Redux
- jsEvent Loop
- react portal
Archives
- Today
- Total
목록toast err (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