React中Ref 的使用方法详解


Posted in Javascript onApril 28, 2020

本文实例讲述了React中Ref 的使用方法。分享给大家供大家参考,具体如下:

React中Ref 的使用 React v16.6.3

在典型的React数据流中,props是父组件与其子组件交互的唯一方式。要修改子项,请使用new props 重新呈现它。但是,在某些情况下,需要在典型数据流之外强制修改子项。要修改的子项可以是React组件的实例,也可以是DOM元素。对于这两种情况,React都提供了api。

何时使用refs

refs有一些很好的用例:

  • 1.文本选择或媒体播放。
  • 2.触发势在必行的动画。
  • 3.与第三方DOM库集成。

避免将refs用于可以声明性地完成的任何操作。

*不要过度使用Refs

旧版API:字符串引用

如果您之前使用过React,那么您可能熟悉一个旧的API,其中ref属性是一个字符串"textInput",并且DOM节点被访问为this.refs.textInput。建议不要使用它,因为字符串引用有一些问题,被认为是遗留问题,很可能会在未来的某个版本中删除。

回调引用

当组件安装时,React将使用DOM元素调用ref回调,并在卸载时调用null。

在componentDidMount或componentDidUpdate触发之前,Refs保证是最新的.

class CustomTextInput extends React.Component {
 constructor(props) {
 super(props);

 this.textInput = null;

 this.setTextInputRef = element => {
  this.textInput = element;
 };

 this.focusTextInput = () => {
  // Focus the text input using the raw DOM API
  if (this.textInput) this.textInput.focus();
 };
 }

 componentDidMount() {
 // autofocus the input on mount
 this.focusTextInput();
 }

 render() {
 // Use the `ref` callback to store a reference to the text input DOM
 // element in an instance field (for example, this.textInput).
 return (
  <div>
  <input
   type="text"
   ref={this.setTextInputRef}
  />
  <input
   type="button"
   value="Focus the text input"
   onClick={this.focusTextInput}
  />
  </div>
 );
 }
}

refs例子--点击获取input焦点

class Example extends React.Component {
 handleClick() {
 // 使用原生的 DOM API 获取焦点
 this.refs.myInput.focus
 ();
 }
 render() {
 // 当组件插入到 DOM 后,ref 属性添加一个组件的引用于到 this.refs
 return (
  <div>
  <input type="text" ref="myInput" />
  <input
   type="button"
   value="点我输入框获取焦点"
   onClick={this.handleClick.bind(this)}
  />
  </div>
 );
 }
}

使用React.createRef()

React.createRef()React 16.3中引入的API。如果您使用的是早期版本的React,我们建议您使用回调引用。

创建React.createRef()

Refs是使用属性创建的,React.createRef()并通过ref属性附加到React元素。在构造组件时,通常将Refs分配给实例属性,以便可以在整个组件中引用它们。

class MyComponent extends React.Component {
 constructor(props) {
 super(props);
 this.myRef = React.createRef();
 }
 render() {
 return <div ref={this.myRef} />;
 }
}

访问ref

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

const node = this.myRef.current;

ref的值根据节点的类型而有所不同

  • 当在refHTML元素上使用该属性时,ref在构造函数中创建的属性将React.createRef()接收底层DOM元素作为其current属性。
  • 在ref自定义类组件上使用该属性时,该ref对象将接收组件的已安装实例作为其current。

您可能无法ref在函数组件上使用该属性,因为它们没有实例。

class CustomTextInput extends React.Component {
 constructor(props) {
 super(props);
 // create a ref to store the textInput DOM element
 this.textInput = React.createRef();
 this.focusTextInput = this.focusTextInput.bind(this);
 }

 focusTextInput() {
 // Explicitly focus the text input using the raw DOM API
 // Note: we're accessing "current" to get the DOM node
 this.textInput.current.focus();
 }

 render() {
 // tell React that we want to associate the <input> ref
 // with the `textInput` that we created in the constructor
 return (
  <div>
  <input
   type="text"
   ref={this.textInput} />

  <input
   type="button"
   value="Focus the text input"
   onClick={this.focusTextInput}
  />
  </div>
 );
 }
}

current当组件安装时,React将为该属性分配DOM元素,并null在卸载时将其分配回。ref更新发生之前componentDidMount或componentDidUpdate生命周期方法。

无法在函数组件上使用ref属性

function MyFunctionComponent() {
 return <input />;
}

class Parent extends React.Component {
 constructor(props) {
 super(props);
 this.textInput = React.createRef();
 }
 render() {
 // This will *not* work!
 return (
  <MyFunctionComponent ref={this.textInput} />
 );
 }
}

**如果需要引用它,则应该将组件转换为类,就像您需要生命周期方法或状态时一样。
但是,只要引用DOM元素或类组件,就可以在函数组件中使用该ref属性:**

function CustomTextInput(props) {
 // textInput must be declared here so the ref can refer to it
 let textInput = React.createRef();

 function handleClick() {
 textInput.current.focus();
 }

 return (
 <div>
  <input
  type="text"
  ref={textInput} />

  <input
  type="button"
  value="Focus the text input"
  onClick={handleClick}
  />
 </div>
 );
}

将DOM引用公开给父组件

在极少数情况下,可能希望从父组件访问子节点的DOM节点。通常不建议这样做,因为它会破坏组件封装,但它偶尔可用于触发焦点或测量子DOM节点的大小或位置。

虽然可以向子组件添加引用,但这不是一个理想的解决方案,因为只能获得组件实例而不是DOM节点。此外,这不适用于功能组件。

如果使用React 16.3或更高版本,我们建议在这些情况下使用ref forwarding。引用转发允许组件选择将任何子组件的引用公开为自己的组件。可以在ref转发文档中找到有关如何将子DOM节点公开给父组件的详细示例。

如果您使用React 16.2或更低版本,或者您需要比ref转发提供的更多灵活性,您可以使用此替代方法并明确地将ref作为不同名称的prop传递。

如果可能,建议不要暴露DOM节点,但它可以是一个有用的逃生舱。请注意,此方法要求向子组件添加一些代码。如果您完全无法控制子组件实现,则最后一个选项是使用findDOMNode(),但不鼓励使用它StrictMode。

希望本文所述对大家react程序设计有所帮助。

Javascript 相关文章推荐
几个有趣的Javascript Hack
Jul 24 Javascript
jquery动态加载js三种方法实例
Aug 03 Javascript
javascript制作loading动画效果 loading效果
Jan 14 Javascript
JavaScript将一个数组插入到另一个数组的方法
Mar 19 Javascript
JavaScript把数组作为堆栈使用的方法
Mar 20 Javascript
jQuery制作效果超棒的手风琴折叠菜单
Apr 03 Javascript
jQuery操作cookie
Aug 08 Javascript
label+input实现按钮开关切换效果的实例
Aug 16 Javascript
angular或者js怎么确定选中ul中的哪几个li
Aug 16 Javascript
JS库之Waypoints的用法详解
Sep 13 Javascript
js实现复制功能(多种方法集合)
Jan 06 Javascript
详解vue-cli项目在IE浏览器打开报错解决方法
Dec 10 Vue.js
在Webpack中用url-loader处理图片和字体的问题
Apr 28 #Javascript
react PropTypes校验传递的值操作示例
Apr 28 #Javascript
vue 百度地图(vue-baidu-map)绘制方向箭头折线实例代码详解
Apr 28 #Javascript
Vue + Scss 动态切换主题颜色实现换肤的示例代码
Apr 27 #Javascript
浅析vue cli3 封装Svgicon组件正确姿势(推荐)
Apr 27 #Javascript
react组件基本用法示例小结
Apr 27 #Javascript
react基本安装与测试示例
Apr 27 #Javascript
You might like
叶罗丽:为什么大家对颜冰这对CP非常关心,却对金茉两人十分冷漠
2020/03/17 国漫
php多文件上传下载示例分享
2014/02/20 PHP
php魔法函数与魔法常量使用介绍
2017/07/23 PHP
Laravel如何创建服务器提供者实例代码
2019/04/15 PHP
javascript中&quot;/&quot;运算符常见错误
2010/10/13 Javascript
js的alert弹出框出现乱码解决方案
2013/09/02 Javascript
JS远程获取网页源代码实例
2013/09/05 Javascript
java和javascript获取word文档的书签位置对比
2014/06/19 Javascript
JavaScript实现将文本框的值插入指定位置的方法
2015/08/13 Javascript
改变checkbox默认选中状态及取值的实现代码
2016/05/26 Javascript
JavaScript中的冒泡排序法
2016/08/03 Javascript
Angular2库初探
2017/03/01 Javascript
jQuery模拟下拉框选择对应菜单的内容
2017/03/07 Javascript
nodejs利用ajax实现网页无刷新上传图片实例代码
2017/06/06 NodeJs
解决webpack -p压缩打包react报语法错误的方法
2017/07/03 Javascript
SVG动画vivus.js库使用小结(实例代码)
2017/09/14 Javascript
在Vue组件上动态添加和删除属性方法
2018/02/23 Javascript
vue路由守卫+登录态管理实例分析
2019/05/21 Javascript
vue elementUI 表单校验功能之数组多层嵌套
2019/06/04 Javascript
详解微信小程序中var、let、const用法与区别
2020/01/11 Javascript
Python 初始化多维数组代码
2008/09/06 Python
pytorch 固定部分参数训练的方法
2019/08/17 Python
python实现的config文件读写功能示例
2019/09/24 Python
keras自定义回调函数查看训练的loss和accuracy方式
2020/05/23 Python
基于Python组装jmx并调用JMeter实现压力测试
2020/11/03 Python
经济实惠的豪华背包和行李袋:Packs Project
2018/10/17 全球购物
Otticanet美国:最顶尖的世界名牌眼镜, 能得到打折季的价格
2019/03/10 全球购物
JSP和Servlet有哪些相同点和不同点,他们之间的联系是什么?
2015/10/22 面试题
狼和鹿教学反思
2014/02/05 职场文书
校园学雷锋活动月总结
2014/03/09 职场文书
预备党员学习十八届三中全会精神思想汇报
2014/09/13 职场文书
2019年怎样才能撰写出优秀的自荐信
2019/03/25 职场文书
小公司融资,商业计划书的8切记
2019/07/15 职场文书
JS数组方法some、every和find的使用详情
2021/10/05 Javascript
Java 关于String字符串原理上的问题
2022/04/07 Java/Android
科学家测试在太空中培育人造肉,用于未来太空旅行
2022/04/29 数码科技