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