“ComponentDidupdate” Ответ

ComponentDidupdate

componentDidUpdate(prevProps, prevState) {
  if (prevState.pokemons !== this.state.pokemons) {
    console.log('pokemons state has changed.')
  }
}
Cautious Coyote

supcomponentupdate

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

ComponentDidupdate

componentDidUpdate(prevProps) {
  // Typical usage (don't forget to compare props):
  if (this.props.userID !== prevProps.userID) {
    this.fetchData(this.props.userID);
  }
}
Jolly Jackal

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

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

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