📅  最后修改于: 2022-03-11 15:02:09.951000             🧑  作者: Mango
componentDidUpdate(prevProps) {
// Utilisation classique (pensez bien à comparer les props) :
if (this.props.userID !== prevProps.userID) {
this.fetchData(this.props.userID);
}
}