티스토리 뷰
Error
Uncaught runtime errors: Cannot read properties of undefined (reading 'map')
윤미주 2024. 2. 3. 03:45
이런 에러가 나서 구글링을 했는데 어떤 천사분께서 너무 명쾌하게 답을 적어 두셨다.
❓map이 reading할게 없다고 화를 내는 중이다.
수정 전 코드
export default function LetterList({ letters, text, onDeleted, onEdit }) {
return (
<Section>
<SectionTitle>{text}</SectionTitle>
<SectionUl>
<SectionLi>
{letters.map((letter) => (
<LetterItem
key={letter.id}
letter={letter}
onDeleted={onDeleted}
onEdit={onEdit}
/>
))}
</SectionLi>
</SectionUl>
</Section>
);
}
수정 후 코드
export default function LetterList({ letters, text, onDeleted, onEdit }) {
return (
<Section>
<SectionTitle>{text}</SectionTitle>
<SectionUl>
<SectionLi>
{letters?.map((letter) => (
<LetterItem
key={letter.id}
letter={letter}
onDeleted={onDeleted}
onEdit={onEdit}
/>
))}
</SectionLi>
</SectionUl>
</Section>
);
}
💡letters?.map으로 바꿔주면 letter가 있을때 map을 할 것이기 때문에!! 에러가 사라진다!
'Error' 카테고리의 다른 글
TypeError: _api_axiosInstance_WEBPACK_IMPORTED_MODULE_11__ (0) | 2024.02.20 |
---|---|
Uncaught TypeError: Cannot read properties of null (reading 'useContext') (0) | 2024.02.13 |
Uncaught runtime errors: is not iterable (0) | 2024.02.02 |
2024. 01. 30 Router 설정 중 에러 (2) | 2024.01.30 |
2024. 01 .19 To Do List 여러가지 에러 해결하기 (0) | 2024.01.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 영화별점만들기
- readme 작성 방법
- axios CRUD
- styled component GlobalStyle 사용방법
- 별점만들기
- Warning: A component is changing an uncontrolled input to be controlled.
- Warning: validateDOMNesting(...): <li> cannot appear as a descendant of <li>
- styled component 설치방법
- 별점 색채우기
- axios 사용하기
- styled component 사용방법
- 유효성검사 css
- axiosinstance 사용 시 토큰 사용 법
- nextjs 토큰 만료처리하기
- readme작성해보기
- 영화 별점
- Warning: Each child in a list should have a unique "key" prop.
- readme 이미지 추가 방법
- axios instance 작성하기
- readme 역할
- git cache
- 유효성검사
- readme 작성해야 하는 이유
- axios 설치하기
- Fetch와 Axios 의 장단점
- styled component 조건부 사용방법
- simple Icon 사용방법
- 에러모음집
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함