I believe that people who have experience with React will be familiar with ref, which can be used to obtain component instance objects or DOM objects. In addition to the traditional usage, the useRef hook function can also save data "across rendering cycles". First, let's look at its traditional usage: import React, { useState, useEffect, useMemo, useRef } from 'react'; export default function App(props){ const [count, setCount] = useState(0); const doubleCount = useMemo(() => { return 2 * count; }, [count]); const couterRef = useRef(); useEffect(() => { document.title = `The value is ${count}`; console.log(couterRef.current); }, [count]); return ( <> <button ref={couterRef} onClick={() => {setCount(count + 1)}}>Count: {count}, double: {doubleCount}</button> </> ); } The code uses useRef to create a counterRef object and assigns it to the ref attribute of the button. In this way, by accessing couterRef.current, you can access the DOM object corresponding to the button. Then let's take a look at how to save data. Is there anything in a component that can survive across render cycles, i.e. properties that remain constant after the component is rendered multiple times? The first thing that comes to mind should be state. That's right, a component's state can remain unchanged after multiple renderings. However, the problem with state is that once it is modified, it will cause the component to re-render. At this time, useRef can be used to store data across rendering cycles, and modifying it will not cause component rendering. import React, { useState, useEffect, useMemo, useRef } from 'react'; export default function App(props){ const [count, setCount] = useState(0); const doubleCount = useMemo(() => { return 2 * count; }, [count]); const timerID = useRef(); useEffect(() => { timerID.current = setInterval(()=>{ setCount(count => count + 1); }, 1000); }, []); useEffect(()=>{ if(count > 10){ clearInterval(timerID.current); } }); return ( <> <button ref={couterRef} onClick={() => {setCount(count + 1)}}>Count: {count}, double: {doubleCount}</button> </> ); } In the example above, I use the current property of the ref object to store the timer ID, so that the timer ID can be saved after multiple renderings, so that the timer can be cleared normally. This is the end of this article about the specific use of useRef in React. For more relevant React useRef content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: Detailed explanation of Mysql transaction processing
Table of contents 1. Joint index description 2. C...
This article shares the specific code of Bootstra...
Table of contents 1. Scenario 2. Solution 3. Conc...
When the user's home directory becomes larger...
MySQL slow query, whose full name is slow query l...
On some websites, you can often see some pictures...
1. Install dependency packages yum -y install gcc...
This tag is not part of HTML3.2 and only supports ...
This article example shares the specific code for...
> Deploy MySQL 5.7 cluster master & slave ...
This article shares a native JS implementation of...
Table of contents Overview Virtual Dom principle ...
Record lock locks a single index record. Record l...
Part 1: Basics 1. Unlike pseudo-classes such as :...
Table of contents 1. props 2..sync 3.v-model 4.re...