Dev-dotoli TIL

WIL 4



Sparta coding



Innovation Camp


w5 day28



Life Cycle class / functoin

  • react는 component를 기반의 view를 중심으로 하는 library 각각의 component는 수명 주기life cycle를 가짐

    page에서 rendering되기전의 준비과정에서 시작
    page에서 사라실 때 끝
    
  • lifecycle 도식화 lifecycle

  • 큰틀

    • 생성될 때 > Mount : componentDidMount

    • 업데이트 > Update : componentDidUpdate

      • props가 바뀔 때
      • state가 바뀔 때
      • 부모가 rerendering될 때
      • this.forceUpdate로 강제 rendering triger할 때


    • 제거할 때 > Unmount : componentWillUnmount

React Hooks

  • s