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的主要内容,如果未能解决你的问题,请参考以下文章

React 事件对象键盘事件表单事件ref获取dom节点react实现类似Vue双向数据绑定

react ref的使用

Vue 的 ref 和 React 的 refs 转发

Vue 的 ref 和 React 的 refs 转发

react中获取dom以及使用ref

React 实现数据双向绑定 事件的绑定以及传参 获取表单值的两种方法