react refs使用方式

1.字符串形式

赋值:ref="foo", 使用: this.refs.foo

因为 string 类型的 refs 存在 一些问题。它已过时并可能会在未来的版本被移除

2. 回调函数

赋值: ref={(c) => this.foo = c},使用:this.foo

3.React.createRef()

赋值:ref={this.textInput},使用:this.textInput.current

当 ref 被传递给 render 中的元素时,对该节点的引用可以在 ref 的 current 属性中被访问

你可能感兴趣的:(react refs使用方式)