React LifeCycle


Life Cycle


:各重要な時点で、構成部品が再レンダリングされます.
これはそれらの重要な時を制御する方法です.

ライフサイクルメソッド


- componentDidMount


:画面の後ろに表示

- componentDidUpdate


:構成部品が新しい状態になった後

- componentWillUnmount


:画面が消える前に

ライフサイクルメソッドの使用例

시계 만들기
1. componentDidMount를 활용하여 1초마다 tick함수를 작동하게 하였다.
2. componentWillInmount를 활용하여 시계가 작동하지 않도록 해주었다.
function FormattedDate(props) {
  return <h2>It is {props.date.toLocaleTimeString()}.</h2>;
}

class Clock extends React.Component {
  constructor(props) {
    super(props);
    this.state = {date: new Date()};
  }

  componentDidMount() {
    this.timerID = setInterval(
      () => this.tick(),
      1000
    );
  }

  componentWillUnmount() {
    clearInterval(this.timerID);
  }

  tick() {
    this.setState({
      date: new Date()
    });
  }

  render() {
    return (
      <div>
        <h1>Hello, world!</h1>
        <FormattedDate date={this.state.date} />
      </div>
    );
  }
}

ReactDOM.render(
  <Clock />,
  document.getElementById('root')
);

クロック完了