일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- react hook
- background tab
- Nextjs React 18
- background setttimeout
- notFound()
- react-helmet
- Nextjs
- context
- React 18 Nextjs
- getUTCDate
- hook
- RTK Query
- Next13
- Babel
- background setInterval
- Render Props
- 고급안내서
- CSS
- React 18
- next13 head
- background: url
- codingtest
- react
- React API 참고서
- React18
- Programmers
- React 고급 안내서
- React 공식문서
- Javascript
- React 고급안내서
Archives
- Today
- Total
akjfal
Uncaught TypeError: Cannot assign to read only propery '0' of obejct '[object Array]' 본문
react/react 에러
Uncaught TypeError: Cannot assign to read only propery '0' of obejct '[object Array]'
akjfal 2019. 11. 23. 12:58
배열을 직접 수정하려고 하면 이러한 오류가 발생한다.
해결법)
1. 배열을 잘랐다가 다시 합치기
2.
const tempOption = tempProduct.data.option.map((item, index) => {
if(index !== arraynum){
return item
}
return{
...item,
[e.target.name]: e.target.value
}
})
map함수를 통해서 재 생성
'react > react 에러' 카테고리의 다른 글
Comments