728x90
반응형
리액트 컴포넌트 라이프사이클
1) constructor()
2) componentWillMount()
3) render()
4) componentDidMount()
props or state 상태가 변경되는 경우 => shouldComponentUpdate() 실행됨
shouldComponentUpdate() 가 실행되면 3번의 render() 다음 4번의 componentDidMount() 함수로
이어서 호출 된다. 따라서 상태(state)값이 지속적으로 변한다면 계속 비동기적으로 View를 구성 가능!
반응형
'React.js' 카테고리의 다른 글
[React.js] 4. Code Visual Studio + Git 설정 (0) | 2019.05.13 |
---|---|
[React.js] 3. node.js 환경설정 (0) | 2019.05.12 |
[React.js] 2. state (0) | 2019.05.05 |
[React.js] 1. props (0) | 2019.04.29 |
댓글