美文网首页
ref 的使用

ref 的使用

作者: 张_何 | 来源:发表于2022-05-12 15:20 被阅读0次
  • 在React的开发模式中,通常情况下不需要、也不建议直接操作DOM原生,但是某些特殊的情况,确实需要获取到DOM进行某些操作:
  • 管理焦点,文本选择或媒体播放;
  • 触发强制动画;
  • 集成第三方 DOM 库;
  • ref 不会被当做属性传递给子组件,而是交由 React 内部处理
创建 ref的方式
  • 如何创建refs来获取对应的DOM呢?目前有三种方式:
传入字符串(过期)
  • 使用时通过 this.refs.传入的字符串格式获取对应的元素;
export default class App extends PureComponent {
  render() {
    return (
      <div>
        <h2 ref="titleRef">Hello React</h2>
        <button onClick={e => this.changeText()}>改变文本</button>
      </div>
    )
  }

  changeText() {
    this.refs.titleRef.innerHTML = "Hello Coderwhy";
  }
}
传入一个对象(推荐)
  • 对象是通过 React.createRef() 方式创建出来的;
  • 在构造函数中声明并赋值一个 ref this.titleRef = createRef();
  • 将创建的ref 对象赋值给元素的 ref 属性; <h2 ref={this.titleRef}>Hello React</h2>
  • 使用时获取到创建的对象其中有一个current属性就是对应的元素;
    this.titleRef.current.innerHTML = "Hello JavaScript";
import React, { PureComponent, createRef, Component } from 'react';
export default class App extends PureComponent {
  constructor(props) {
    super(props);
    this.titleRef = createRef();
  }

  render() {
    return (
      <div>
        <h2 ref={this.titleRef}>Hello React</h2>
        <button onClick={e => this.changeText()}>改变文本</button>
      </div>
    )
  }

  changeText() {
    this.titleRef.current.innerHTML = "Hello JavaScript";
  }
}
传入一个函数
  • 该函数会在DOM被挂载时进行回调,这个函数会传入一个 元素对象,我们可以自己保存;
  • 使用时,直接拿到之前保存的元素对象即可;
import React, { PureComponent, createRef, Component } from 'react';
export default class App extends PureComponent {
  constructor(props) {
    super(props);
    this.titleEl = null;
  }

  render() {
    return (
      <div>
        <h2 ref={arg => this.titleEl = arg}>Hello React</h2>
        <button onClick={e => this.changeText()}>改变文本</button>
      </div>
    )
  }

  changeText() {
    this.titleEl.innerHTML = "Hello TypeScript";
  }
}

ref 的类型

  • 当 ref 属性用于 HTML 元素时,构造函数中使用 React.createRef() 创建的 ref 接收底层 DOM 元素作为其 current 属性;
  • 当 ref 属性用于自定义 class 组件时,ref 对象接收组件的挂载实例作为其 current 属性;
  • 函数式组件由于没有实例,所以无法通过 ref 获取他们的实例,但可以通过 React.forwardRef 拿到
import React, { PureComponent, forwardRef } from 'react';

// 高阶组件forwardRef
const Profile = forwardRef(function(props, ref) {
  return <p ref={ref}>Profile</p>
})

export default class App extends PureComponent {
  constructor(props) {
    super(props);
    this.profileRef = createRef();
  }

  render() {
    return (
      <div>
        <Profile ref={this.profileRef} name={"why"}/>
        <button onClick={e => this.printRef()}>打印ref</button>
      </div>
    )
  }

  printRef() {
    console.log(this.profileRef.current);
  }
}

应用

  • 通过 ref 我们可以获取到当前元素,那么就可以在父组件中给子组件设置 ref,然后通过 ref 拿到子组件调用子组件的方法
import React, { PureComponent, createRef, Component } from 'react';

class Counter extends PureComponent {
  constructor(props) {
    super(props);
    this.state = {
      counter: 0
    }
  }

  render() {
    return (
      <div>
        <h2>当前计数: {this.state.counter}</h2>
        <button onClick={e => this.increment()}>+1</button>
      </div>
    )
  }

  increment() {
    this.setState({
      counter: this.state.counter + 1
    })
  }
}

export default class App extends PureComponent {
  constructor(props) {
    super(props);
    this.counterRef = createRef();
  }

  render() {
    return (
      <div>
        <Counter ref={this.counterRef}/>
        <button onClick={e => this.appBtnClick()}>App按钮</button>
      </div>
    )
  }
  appBtnClick() {
    this.counterRef.current.increment();
  }
}

相关文章

  • ref的使用

    ref关键字使参数按引用传递 其效果是,当控制权传递回调用方法时,在方法中对参数所做的任何更改都将反映在该变量中。...

  • ref的使用

    子组件改变父组件的值是遇到的问题 组件中的参数放在那里? 我们应该在父组件中 定义一个方法 然后我们在子组件中第一...

  • ref的使用

    ref在react中可以获取一个DOM节点,这点和vue很类似,但是用法不同,下面上例子: 我们在写一个input...

  • ref 的使用

    在React的开发模式中,通常情况下不需要、也不建议直接操作DOM原生,但是某些特殊的情况,确实需要获取到DOM进...

  • ref使用

    使用: 获取元素:

  • React学习笔记(三)

    React中的 ref 的使用 ref是一个引用,在React中使用ref来直接获取DOM元素从而操作DOM Re...

  • vue - ref

    vue - ref 说明 ref 是英文单词 reference,代表引用. 在 vue 中, ref 的使用分四...

  • 安装gsl

    ref:GSL 在 Ubuntu 下的安装和使用 | Lancezhange ref2:官方doc文档 ref3:...

  • react自定义组件中使用ref

    一、自定义组件使用ref并且透传子组件ref 自定义组件中使用ref需要用到react的2个hooks:1.for...

  • 【vue3】一文读懂ref与reactive

    开发中如何选择使用ref和reactive呢?有时真不知道怎么选择 Ref ref数据响应式监听。ref 函数传入...

网友评论

      本文标题:ref 的使用

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