美文网首页
react 小节

react 小节

作者: WEB升级ing | 来源:发表于2018-10-08 13:41 被阅读0次

    react summerise

    组件创建的方式
    1. 纯函数组件
    没有生命周期
    没有state,可接收props
    展示用的组件,性能更好
    2.类组件class
    实例化阶段
    constructor
    static getDerivedStateFromProps 组件实例化后和接收新属性时
    render()
    componentDidMount 组件装配好了,适合实现网络请求
    更新阶段
    static getDerivedStateFromProps 接收新属性
    shouldComponentUpdate()
    componentWillUpdate(unstable)
    render()
    getSnapshotBeforeUpdate() 在最新的渲染提交给DOM之前调用
    componentDidUpdate()
    销毁期
    componentWillunmount
    错误捕获
    componentDidcatch()

    相关文章

      网友评论

          本文标题:react 小节

          本文链接:https://www.haomeiwen.com/subject/iyadaftx.html