React#codestates#lifecycle#componentDidMount#shouldcomponentUpdate#compopnentDidUpdate#componentWillUnmount1 React - State Life Cycle(state 생명주기) State는 사람의 생명주기 처럼 생성(태어남) - 변화(성장) -제거(죽음)으로 구성 되어있다. State가 생성될 때 *constructor *render 순으로 저장이 되었다가 render가 끝나면 *componentDidMount 내장 메소드가 실행이 된다. ※Mount는 component가 처음으로 시작할 때를 말합니다. 업데이트할 때 *render 순으로 React DOM 및 refs 업데이트가 되었다가 render가 끝나면 *componentDidUpdate 내장 메소드가 실행이 된다. 제거할 때 *componentWillUnmount 내장 메소드가 실행이 된다. 예시) 예제 : https://programmingwithmosh.com/react/guide-to-learn-useeffect-.. 2020. 7. 18. 이전 1 다음 반응형