본문 바로가기
React/ETC Error

[TypeError] error - TypeError: Cannot read properties of undefined (reading 'fetchBoards')

by fefe94 2022. 2. 7.
문제상황

 

페이지 네이션 연습 중 다음과 같은 에러가 떴다.

 

브라우저상 에러

Server Error
TypeError: Cannot read properties of undefined (reading 'fetchBoards')
This error happened while generating the page. Any console logs will be displayed in the terminal window.

터미널 에러

error - TypeError: Cannot read properties of undefined (reading 'fetchBoards')

undefined에 대한 속성을 읽을 수 없다고 한다.

 

 

해결

이유는 페치보드할 시에 값이 없을 수도 있는데

불러오려 그래서인듯 하다.

있을 수도 없을 수도 있다는 뜻으로 물음표를 data?.fetchBoards?. 이렇게 붙여 주었다. 

 

 

 

 

앞으로 undefined를 읽을 수 없다고 하면 해당 값이 없을 수도 있다는 뜻으로 받아들이고 

?를 달아볼까 싶다.

댓글