React之Ref如何去使用?

  1. ref对象的创建,所谓创建,就是通过React.createRef或者React.useRef来创建一个Ref原始对象。

  2. 而react对ref的处理则是,主要指的是对于标签中的ref属性,react是如何处理以及react转发ref。

ref对象的创建

什么是ref对象,ref对象就是用createRef或者useRef创建出来的对象。

{
    current: null // current指向的ref对象获取到的实际内容。可以是dom元素,组件实例,或者是其它
}

react提供两种方法创建ref对象。

  • 类组件:React.createRef

第一种是通过React.createRef 创建一个ref对象。

class Index extends React.Component{
    constructor(props){
        super(props)
        this.currentDom = React.createRef(null)  // 创建ref
    }
    componentDidMount() {
        console.log(this.currentDom)
    }
    render = () => <div ref={this.currentDom}> ref 对象创建获取元素组件</div>
}
  • 函数组件:useRef

第二种是通过函数组件创建Ref,可以用hooks中的useRef来达到同样的效果

export default function Index () {
    const currentDom = React.useRef(null)
    UseEffect(() => {
        console.log(currentDom.current)
    },[])
    return <div ref={currentDom}></div>
}

类组件获取ref的三种方式

  • ref属性是一个字符串

class Children extends Component{
    render = () => <div>hello,world</div>
}
​
export default class Index extends React.Component{
    componentDidMount(){
        console.log(this.refs)
    }
    render = () => <div>
        <div ref="currentDom"></div>
        <Children ref="currentComInstance"></Children>
    </div>
}
  • ref 属性是一个函数

class Children extends React.Component{
    render = () => <div>hello,world</div>
}
​
export default class Index extends React.component{
    currentDom = null
    currentComponentInstance = null
    componentDidMount () {
        console.log(this.currentDom)
        console.log(this.currentComponentInstance)
    }
    
     render=()=> <div>
        <div ref={(node)=> this.currentDom = node }  >Ref模式获取元素或组件</div>
        <Children ref={(node) => this.currentComponentInstance = node  }  />
    </div>
}

  • ref属性是一个ref对象

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

赵小左

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值