当前位置 : 主页 > 网页制作 > React >

react子组件向父组件传值

来源:互联网 收集:自由互联 发布时间:2021-06-15
父组件 import TableSelect from ‘./tableSelect‘ // 获取模糊搜索选择的数据 childValue = (data)= { console.log(data) } // 使用子组件 在父组件中将getChildValue传递给子组件 TableSelect getChildValue={ this.chil

父组件

import TableSelect from ‘./tableSelect‘
  // 获取模糊搜索选择的数据
  childValue = (data)=>{
    console.log(data)
  }
// 使用子组件   在父组件中将getChildValue传递给子组件
   <TableSelect getChildValue={this.childValue} />

子组件    调用传递过来的getChildValue方法,并传入this,传递的参数带在后面,此时父组件中的childValue会得到该值

<Button type={‘link‘} onClick={this.props.getChildValue.bind(this, ‘aaaaa‘)}>查询</Button>
网友评论