React Lifecycle生命周期
时间:2019-02-16 23:53
分类:学习
标签:React

还是Vue的生命周期命令好记,这个React的太特么长了
-
componentWillMount() //创建之前
-
componentDidMount() //创建之后
-
componentWillUpdate() //更新之前
-
componentDidUpdate() //更新之后
-
componentWillUnmount() //卸载之前
-
componentWillReceiveProps() //组件参数更新