美文网首页react
react ref获取真实dom

react ref获取真实dom

作者: 月肃生 | 来源:发表于2018-12-17 11:21 被阅读56次

    之前一直用ref获取,没觉得有什么问题,但是获取封装的组件获取到的却是React对象,而不是dom元素。

    ref获取的几种方式

    1. ref 方法
    <div ref={ref=> this.div = ref} />
    // 通过this.div获取
    
    1. refs
    <div ref='div' />
    // 通过this.refs.div获取
    
    1. React.createRef()
    // constructor
    this.div = React.createRef()
    // render
    <div ref={this.div} />
    // 通过this.div获取
    

    相关文章

      网友评论

        本文标题:react ref获取真实dom

        本文链接:https://www.haomeiwen.com/subject/ixlqkqtx.html