react ref获取真实dom

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

ref获取的几种方式

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

你可能感兴趣的:(react ref获取真实dom)