📜  prev props - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:09.951000             🧑  作者: Mango

代码示例1
componentDidUpdate(prevProps) {
  // Utilisation classique (pensez bien à comparer les props) :
  if (this.props.userID !== prevProps.userID) {
    this.fetchData(this.props.userID);
  }
}