만족
[React] Rendered more hooks than during the previous render 본문
[React] Rendered more hooks than during the previous render
FrontEnd/React Satisfaction 2023. 1. 22. 05:55렌더링 타임에 state의 갯수가 달라져서 발생하는 오류다
const Mycomponent= ()=>{
const [foo, setFoo]= useState('');
if(foo!== ''){
const [bar, setBar]= useState('');
}
return (<button onClick={()=> setFoo('foo')}>버튼</button>);
}
위 코드에서는 버튼을 클릭하기 전에 state가 한 개(foo) 였다가,
버튼을 클릭하고 나면 const [bar, setBar]= useState(''); 에 의해 state가 하나 더 생긴다.
이런 경우 발생하는 오류이므로, state의 갯수는 조건과 관계없이 동일하도록 변경하고,
그 state에 따른 사이드이펙트를 조건부 처리하는 방식으로 수정한다.
'FrontEnd > React' 카테고리의 다른 글
[React] Tanstack Query(react-query) 훑어보기 (0) | 2024.02.12 |
---|---|
[React] 간단한 Cypress E2E 테스트 적용해보기 (0) | 2023.10.03 |
[React] 리액트 프로젝트 캐시 전략 (0) | 2022.12.18 |
[React] react-simple-wysiwyg 빌드 오류 (0) | 2022.09.12 |
[React] redux에서 swr로 옮긴 썰 (2) | 2022.09.10 |
Comments