-
[React] Error: Maximum update depth ... 해결방법JavaScript/React 2021. 3. 28. 13:46728x90
에러
Error: Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.
해결방법
// 기존 코드 <button onClick={test()}>TEST</button> // 해결 방법 <button onClick={test}>TEST</button> <button onClick={() => test('test')}>TEST</button> // 매개변수가 있는 케이스
728x90'JavaScript > React' 카테고리의 다른 글
[React] CRA .env (0) 2021.09.21 [React] 절대경로 설정 (0) 2021.05.22 [React] useEffect (0) 2021.05.08 [React] eslint, prittier 적용 (0) 2021.03.07 [React.js] React.js (1) - 개발환경 설정 (0) 2019.12.30