1. 옵셔널 체이닝 (?연산자)
2. && 연산자
3. if문
을 써도 Cannot read properties of undefined 오류가 해결되지 않는 경우가 있다... 3개를 다 써도 안되어서 삽질하던 와중에 발견한 방법.
useState의 초기값을 null로 주면 말끔히 해결된다. useState([]) 도 안되고, useState('')도 안된다. 무조건 NULL이어야 함.
useState(null);
'바보일기' 카테고리의 다른 글
배포 중 axios 의 CORS 오류 (0) | 2023.01.21 |
---|---|
[netlify] - 새로고침 에러 (0) | 2023.01.15 |
The bucket does not allow ACLs (0) | 2023.01.02 |
TypeError: this.client.send is not a function (0) | 2023.01.02 |
You should call navigate() in a React.useEffect(), not when your component is first rendered. (0) | 2022.12.14 |
댓글