ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 挂载生命周期 react不同版本对生命周期做了不同的修改 ES6 | React.createClass() --|:-- \ | getDefault constructor(props) | getInitialState() componentWillMount() | componentWillMount() render() | render() componentDidMount() | componentDidMount() componentWillUnmount() | componentWillUnmount() ### 更新生命周期 更新生命周期| --| componentWillReceiveProps(nextProps) shouldComponentUpdate(nextProps, nextState) componentWillUpdate(nextProps, nextProps) comonentDidUpdate(prevProps, prevState)