react-父组件触发子组件的事件

点击父组件触发子组件的方法

==

点击父组件触发子组件click事件

onRef=()=>{

this.child = ref

}

Parent=()=>{

 this.child.childFun()    //childFun是定义在子组件的事件

}



定义子组件

constructor(props){

super(props)

this.props.onRef(this)     //此定义必须写

}

childFun=()=>{

 console.log("点击父组件触发子组件")

}


你可能感兴趣的:(react-父组件触发子组件的事件)