Detailed explanation of the use of Refs in React's three major attributes

Detailed explanation of the use of Refs in React's three major attributes

Refs is a method used in React to obtain nodes when obtaining some state values ​​in a JSX component or a DOM. In React's official explanation, its scope of application is as follows:

  • Manage focus, text selection, or media playback.
  • Triggers a forced animation.
  • Integrate third-party DOM libraries.

React documentation repeatedly emphasizes that you should not overuse refs, so when we can use DOM native objects to solve it, try not to use refs. According to the previous writing method, first give the writing method of refs in class components and function components

Class Component

In a class, there are three ways to use refs. The most commonly used one is callback.

//Directly define refs, deprecated class App extends React.PureComponent{
    changeInput = ()=>{
        const {input} = this.refs
    }
    render() {
        return (
            <div>
                <input type="text" placeholder={"please input your value"} onBlur={this.changeInput} ref={"input"}/>
            </div>
        )
    }
}

//Use in callback form class App extends React.PureComponent{
    changeInput = ()=>{
        console.log(this.inputRef);
    }
    render() {
        return (
            <div>
                <input type="text" placeholder={"please input your value"} onBlur={this.changeInput} ref={(el)=>{this.inputRef = el}}/>
            </div>
        )
    }
}

//Use createRef
class App extends React.PureComponent{
    inputRef = React.createRef()
    changeInput = ()=>{
        console.log(this.inputRef.current);
    }
    render() {
        return (
            <div>
                <input type="text" placeholder={"please input your value"} onBlur={this.changeInput} ref={this.inputRef}/>
            </div>
        )
    }
}

The above are the three ways to write Ref of class components

Functional Components

function App(){
    const inputRef = useRef("")
    return (
        <div>
            <input type="text" placeholder={"please input your value"} ref={inputRef}/>
        </div>
    )
}

Use a useRef to complete the code directly

Interview FAQ: What is the role of refs in React?

Refs are handles that React provides us with safe access to DOM elements or component instances. In a class component, React treats the first argument in the ref attribute as a handle in the DOM. In the function component, react can also get ref using the hooks api useRef (the useRef feature is often used in hooks, that is, the stored data is not refreshed as the component is refreshed, so as to write some constant amounts)

The above is the detailed content of the detailed explanation of the use of Refs, one of the three major attributes of React. For more information about Refs, one of the three major attributes of React, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • An in-depth introduction to React refs
  • Summary of some common uses of refs in React
  • Tutorial on using refs in React
  • Detailed explanation of the use of React component refs
  • Do you know the Refs attribute in React?

<<:  Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

>>:  Detailed Example of MySQL curdate() Function

Recommend

In-depth understanding of HTML form input monitoring

Today I saw a blog post about input events, and o...

W3C Tutorial (8): W3C XML Schema Activities

XML Schema is an XML-based alternative to DTD. XM...

JavaScript to achieve all or reverse selection function

This article shares the specific code of JavaScri...

A method of making carousel images with CSS3

Slideshows are often seen on web pages. They have...

Implementation of crawler Scrapy image created by dockerfile based on alpine

1. Download the alpine image [root@DockerBrian ~]...

Solution to the same IP after cloning Ubuntu 18 virtual machine

Preface I recently used a virtual machine to inst...

Problems encountered by MySQL nested transactions

MySQL supports nested transactions, but not many ...

WeChat applet to save albums and pictures to albums

I am currently developing a video and tool app, s...

MySQL transaction control flow and ACID characteristics

Table of contents 1. ACID Characteristics Transac...

Analysis of log files in the tomcat logs directory (summary)

Each time tomcat is started, the following log fi...

Perfect solution to Docker Alpine image time zone problem

Recently, when I was using Docker to deploy a Jav...

How to install Solr 8.6.2 in Docker and configure the Chinese word segmenter

1. Environment version Docker version 19.03.12 ce...

DOM operation implementation in react

Table of contents Previous words Usage scenarios ...