1. ERR_CONNECTION_REFUSED

이 오류가 떴다? 그럼 백엔드 서버가 내려갔는지 확인해 보자 ^__^ 

 

https://kinsta.com/blog/err_connection_refused/

 

How to Fix the ERR_CONNECTION_REFUSED Error in Chrome (9 Tips)

As with most error messages, ERR_CONNECTION_REFUSED lets you know that something has gone wrong, without being kind enough to tell you why it’s happened.

kinsta.com

 

2. JSON.parse 에러

해당 JSON.parse 에러는 프론트엔드쪽 코드에 보통 다음과 같은 문제가 있었다.

이 에러는 특정문자(\r, \n, \t, \f)가 포함되어 있을때의 에러이다.

이럴땐 특정문자(\r, \n, \t, \f)를 다음과 같이 치환해주면 정상적으로 파싱되는 것을 볼 수 있다.

  •  testData.replace(/\n/gi, '\\n');
  •  testData.replace(/\r/gi, '\\r');
  •  testData.replace(/\r\n/gi, '\\r\\n');
  •  testData.replace(/\r/gi, '\\r').replace(/\n/gi, '\\n')
  •  ※ testData.replace(/\r/gi, '\\r').replace(/\n/gi, '\\n').replace(/\t/gi, '\\t').replace(/\f/gi, '\\f')

 

https://0taeng.tistory.com/37

 

JSON.parse 에러

JSON.parse 시에 에러나는 경우에 해당 사항인지 확인해보고 해결되셨으면 좋겠습니다. 해당 JSON.parse 에러는 특정문자(\r, \n, \t, \f)가 포함되어 있을때의 에러입니다. var testData = '{"test":"테스트\r\n

0taeng.tistory.com

 

3. 403 에러 Forbidden 에러

토큰이 만료되었는지 확인해보자 ! 

보통 이 에러는 토큰이 만료된 상태로 토큰값이 필요한 API를 시도할 때 발생한다. 

 

+ Recent posts