zoukankan      html  css  js  c++  java
  • 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)}
                    />
  • 相关阅读:
    EF 使用 oracle
    mysql安装笔记
    解决问题
    第四次冲刺
    第三次冲刺
    SQA
    第二次冲刺
    第一次冲刺,求进步
    Scrum _GoodJob
    我对git 、github的初印象
  • 原文地址:https://www.cnblogs.com/james-L/p/11899883.html
Copyright © 2011-2022 走看看