react 子组件(A)向父组件(B)传递参数

子组件A代码如下:

点击子组件事件(selectItem)获取所需传递的参数

selectItem(item, index) {
        this.props.getChildrenMsg(item.skill_name)
        this.props.callBack()
    }
 
父组件B代码如下:
import A from "../components/A"; //父组件引入子组件
getChildrenMsg(item) {
        this.setState({
            selectName: item, //传递的值 , setState赋值
        });
    }
<A  getChildrenMsg={this.getChildrenMsg.bind(this)}
                />
posted @ 2019-11-20 19:09  james_liang  阅读(273)  评论(0编辑  收藏  举报