react 获取 ref
Posted binglove
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 获取 ref相关的知识,希望对你有一定的参考价值。
class Child extends React.Component{
constructor(props){
super(props);
this.myRef=React.createRef();
}
componentDidMount(){
console.log(this.myRef.current);
}
render(){
return <input ref={this.myRef}/>
}
}
第二种方法
<input ref={(input) => {this.textInput = input;}} type="text" />
以上是关于react 获取 ref的主要内容,如果未能解决你的问题,请参考以下文章