Open wangbinze opened 3 years ago
以下均为生命周期调用顺序。
挂载
constructor(props) { super(props); // 不要在这里调用 this.setState() this.state = { counter: 0 }; this.handleClick = this.handleClick.bind(this); }
更新
卸载
错误处理
React生命周期的一个新旧对比可参考掘金
题目:谈谈React组件的生命周期?