Etc/Error

[Error] Maximum update depth...

모야이거였어 2022. 4. 5. 12:45

함수를 부른다 > render를 다시한다 > 또 함수를 부른다 > 반복

함수를 부른다? : {} 블럭안에 함수명+() 이렇게 썼기때문에 바로 호출의 의미라서 무한이 걸림!

 

-> 무한 루프에 걸리는 코드...

<button onClick={this._toggleState}>메뉴</button>  //Wrong

따라서 이렇게 사용해야 함!

<button onClick={() => this._toggleState(param)}>메뉴</button> //Correct

 


출처: https://kss7547.tistory.com/36

 

React.js - 이벤트 Error: Maximum update depth... 해결법

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 preven..

kss7547.tistory.com