자꾸 잊어버려서 기록해 둔다...
컴포넌트를 생성 할 때는 constructor -> componentWillMount -> render -> componentDidMount.
컴포넌트를 제거 할 때는 componentWillUnmount 메소드만 실행.
컴포넌트의 prop이 변경될 때엔 componentWillReceiveProps -> shouldComponentUpdate -> componentWillUpdate-> render -> componentDidUpdate.
컴포넌트의 state가 변경될 떄엔 props 를 받았을 때 와 비슷하지만 shouldComponentUpdate 부터 시작.
컴포넌트를 생성 할 때는 constructor -> componentWillMount -> render -> componentDidMount.
컴포넌트를 제거 할 때는 componentWillUnmount 메소드만 실행.
컴포넌트의 prop이 변경될 때엔 componentWillReceiveProps -> shouldComponentUpdate -> componentWillUpdate-> render -> componentDidUpdate.
컴포넌트의 state가 변경될 떄엔 props 를 받았을 때 와 비슷하지만 shouldComponentUpdate 부터 시작.
댓글 없음:
댓글 쓰기