카테고리 없음

TIL_20 | React Lifecycle

일렁이는코드 2021. 11. 7. 22:01

Component Lifecycle 관계
부모 자식 컴포넌트 관계에서의 라이프 사이클

Component Lifecycle 단계

  1. constructor
  2. render
  3. componentDidMount
    전체 과정에서 한번만 실행된다.
  4. (fetch 완료)
  5. (setState)
  6. render
  7. componentDidUpdate 
  8. componentWillUnmount

부모 자식 컴포넌트 관계에서의 라이프 사이클

반응형