1. useState hook //Import useState from react import React, { useState } from 'react'; function Count() { //Declare a new state variable called count const [count, setCount] = useState(0); 2. useRef hook We can also store the user input in refs and display the collected data as follows: //Import useRef hook import React, { useRef } from "react" export default function App() { //Create a variable to store the reference const nameRef = useRef(); function handleSubmit(e) { //Prevent the page from reloading on submit e.preventDefault() // Output name console.log(nameRef.current.value) } return ( <div className="container"> <form onSubmit={handleSubmit}> <div className="input_group"> <label>Name</label> <input type="text" ref={nameRef}/> </div> <input type="submit"/> </form> </div> ) } 3. useRef and useState
4. When to use Refs and States So in summary, these two This is the end of this article about You may also be interested in:
|
<<: The latest collection of 18 green style web design works
>>: Detailed explanation of redo log and undo log in MySQL
This article shares the specific code of the WeCh...
If the server's images are hotlinked by other...
Table of contents 1. Anonymous slots 2. Named slo...
This article example shares the specific code of ...
Table of contents Web Development 1. Overview of ...
Table of contents Configuration command steps in ...
New features in MySQL 8.0 include: Full out-of-th...
Table of contents 1. Introduction 2. Composition ...
A static node is fixed on a machine and is starte...
This article shares the specific code of JS to ac...
1. Create a shell script vim backupdb.sh Create t...
Preface: When designing a table in MySQL, MySQL o...
[LeetCode] 181.Employees Earning More Than Their ...
1. Install Docker yum -y install docker-io The &q...
Table of contents Tutorial Series 1. Install Mari...