react传值

一、父传子

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

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

       例如:     
                  
  1. 子组件如何接收 (this.props)
例如:   

      
用户组件内容---{ this.props.yh }---{this.props.msg}

你可能感兴趣的:(react传值)