1. What is The essence is the component instance returned by 2. How to use There are three ways to create
Passing in a string Just need to add the class MyComponent extends React.Component { constructor(props) { super(props); this.myRef = React.createRef(); } render() { return <div ref="myref" />; } } The way to access the current node is as follows: this.refs.myref.innerHTML = "hello"; Incoming Object class MyComponent extends React.Component { constructor(props) { super(props); this.myRef = React.createRef(); } render() { return <div ref={this.myRef} />; } } When const node = this.myRef.current; Passing in a function When class MyComponent extends React.Component { constructor(props) { super(props); this.myRef = React.createRef(); } render() { return <div ref={element => this.myref = element} />; } } To get the const node = this.myref Passing in hooks Create a function App(props) { const myref = useRef() return ( <> <div ref={myref}></div> </> ) } Getting the const node = myref.current; In the above three cases, Note that you cannot use the 3. Application Scenarios In some cases, we update components by using Excessive use of For example, avoid exposing But
This is the end of this article about understanding React refs. For more information about understanding React refs, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to install suPHP for PHP5 on CentOS 7 (Peng Ge)
>>: Solution to the Multiple primary key defined error in MySQL
1. This is a bit complicated to understand, I hop...
<br />Original URL: http://www.lxdong.com/po...
Table of contents 1. Modify by binding the style ...
The property names often heard in web design: con...
The requirements are as follows Export the table ...
There is no doubt that containers have become an ...
Preface Today, when I was designing a feedback fo...
1. Download MySQL Image Command: docker pull mysq...
Preface There is a scenario where, for the sake o...
Description Solution VMware 15 virtual machine br...
Table of contents Achieve results Introduction to...
Table of contents 1. Mysql data structure 2. The ...
Table of contents 1. Images 1. What is a mirror? ...
First, we will introduce how (1) MySQL 5.7 has a ...
Sometimes we build a file server through nginx, w...