企业🤖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)