[ERROR] Uncaught TypeError: Cannot read properties of undefined (reading 'map')
문제상황Uncaught TypeError: Cannot read properties of undefined (reading 'map') 해결데이터가 전부 넘어오기도 전에 렌더링되었기 때문에 발생한 에러메시지였다. && 연산자를 활용해 해결하였다. before{ message.items.map((data, idx) => { // 생략 } )} after{ message.id && message.items.map((data, idx) => { // 생략 } )}
2024.11.20