“ComponentwillunMount” Ответ

ComponentwillunMount

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>Bonjour, monde !</h1>
        <h2>Il est {this.state.date.toLocaleTimeString()}.</h2>
      </div>
    );
  }
}

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

supcomponentupdate

shouldComponentUpdate(nextProps, nextState) {
  return true;
}
Salo Hopeless

Ответы похожие на “ComponentwillunMount”

Смотреть популярные ответы по языку

Смотреть другие языки программирования