2021
09-24
09-24
浅谈React Component生命周期函数
React组件有哪些生命周期函数?类组件才有的生命周期函数,包括ES6语法的class以及create-react-class模块:分为几个阶段:挂载,更新,卸载,错误处理;1,挂载:constructor(常用)、staticgetDerivedStateFromProps、render(常用)、componentDidMount(常用)constructor是类组件的构造函数,在这可以初始化组件的state或进行方法绑定如:constructor(props){super(props);this.state={test:'test'};this.someFn=this.someFn....
继续阅读 >