React父组件调用子组件的方法
作者:
Volon | 来源:发表于
2020-03-26 10:01 被阅读0次import React, {Component} from 'react';
export default class Parent extends Component {
render() {
return(
<div>
<Child onRef={this.onRef} />
<button onClick={this.click} >click</button>
</div>
)
}
onRef = (ref) => {
this.child = ref
}
click = (e) => {
this.child.myName()
}
}
class Child extends Component {
componentDidMount(){
this.props.onRef(this)
}
myName = () => console.log("123)
render() {
return (
<div></div>
)
}
}
本文标题:React父组件调用子组件的方法
本文链接:https://www.haomeiwen.com/subject/ezequhtx.html
网友评论