늘 겸손하게

React - shouldComponentUpdate() 본문

Programming/React

React - shouldComponentUpdate()

besforyou999 2022. 8. 22. 17:13

리액트 생명주기 메소드 중 하나인 shouldComponentUpdate()에 대해 알아보자

[ shouldComponentUpdate ]

 

  • 메소드 이름을 보면 알 수 있듯이 컴포넌트를 업데이트 시킬까 말까에 대한 질문이다.
  • 이 메소드는 props 또는 state가 변경되었을 경우, 렌더링이 발생하기 직전에 호출된다.
  • 디폴트로 true 반환

 

이 메소드는 성능 최적화를 위한 메소드로 이전 props와 state값이 달라지지 않아서 불필요한 렌더링을 방지할 목적이라면 PureComponent를 사용하는것이 더 좋습니다. 불필요한 렌더링 방지를 shouldComponentUpdate로 수행하면 버그로 이어질수도 있습니다.

 

 

PureComponent 설명 : https://besforyou.tistory.com/245

 

 

[ 출처 ]

https://ko.reactjs.org/docs/react-component.html