美文网首页
react传值

react传值

作者: HeroXin | 来源:发表于2018-06-20 21:25 被阅读0次

    一、父传子

    1.将子组件引入父组件中 并在需要的位置嵌入

          例如
                      import User from '../user';
                     
                     jsx:    <User />
    
    1. 在嵌入的组件上绑定自定义属性

      例如:
      <User yh="1512A" msg="今天真热啊" />
      子组件如何接收 (this.props)
      例如:

      <div>
      用户组件内容---{ this.props.yh }---{this.props.msg}
      </div>
      react生命周期钩子

      componentWillMount:组件首次渲染之前调用
      componentDidMount:在首次真实的DOM渲染后调用(仅此一次)或请求外部接口数据时使用
      componentWillUnmount:组件卸载后

    相关文章

      网友评论

          本文标题:react传值

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