Detailed explanation of the abbreviation of state in react

Detailed explanation of the abbreviation of state in react

Preface

What is state

We all say that React is a state machine. How is it reflected? It is reflected in the state. Through interaction with the user, different states are realized, and then the UI is rendered, so that the user's data and interface remain consistent. State is a private property of a component.

In React, updating the state of a component will result in the re-rendering of the user interface (without manipulating the DOM). In other words, the user interface will change as the state changes.

PS: state can only be initialized in this component, and state can only be modified and queried by this component, and cannot be queried and modified externally, so it can also be said that state is private to the component.

Here's a shorthand way to write react's state.

State is used for initialization in react. this.state should be considered a private property of a component. There are two ways to write our react state. One is the constructor we saw on the official website.

 constructor(props) {
    super(props);
    this.state = {
      value: null,
    };
  }

But when using state in a class component, the class inherits React.Component

class App extends React.Component {
         //The state we define here is the same as the method above // ​​You can directly write the assignment statement state={aff:1} in the class
 
             render(){  
                 console.log(this);
                 //This this inherits React.Component
                 // Here this is the instance object of the current component return (
                     <div>
                       123
                     </div>
                 )
             }
       }

       ReactDOM.render(
           <Appt/>,
           document.getElementById('app')
       )

I believe everyone wants to see what this prints. Please look down.

insert image description here

This is the result of printing this in our abbreviated state. Let's look at the result of printing this in our official website.

 class App extends React.Component {
        constructor(props) {
            super(props)
            console.log(this,11);
           // This is our normal method of initializing state this.state={
                num: 456
            }
        }
             render(){  
                 return (
                     <div>
                       123
                     </div>
                 )
             }
       }

       ReactDOM.render(
           <Appt/>,
           document.getElementById('app')
       )

The printing results are the same in both ways.

insert image description here

State: Summary

state is the most important property of a component object. The value is an object (which can contain multiple key-value combinations)

This is the end of this article about the abbreviation of react's state. For more relevant react state content, 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:
  • Deep understanding of React State principles
  • A brief analysis of React's understanding of state
  • Detailed explanation of react setState
  • In-depth study of setState source code in React
  • In-depth understanding of the working mechanism of react's setState
  • How much do you know about state and setState() in React components?

<<:  How to turn a jar package into a docker container

>>:  Ubuntu View and modify mysql login name and password, install phpmyadmin

Recommend

How to build Jenkins+Maven+Git continuous integration environment on CentOS7

This article takes the deployment of Spring boot ...

Building the User Experience

<br />Maybe you've just come into a comp...

js development plug-in to achieve tab effect

This article example shares the specific code of ...

Detailed tutorial on VMware installation of Linux CentOS 7.7 system

How to install Linux CentOS 7.7 system in Vmware,...

Using JavaScript in HTML

The <script> tag In HTML5, script has the f...

Detailed tutorial on installing Spring boot applications on Linux systems

Unix/Linux Services systemd services Operation pr...

Web form creation skills

In fact, the three tables above all have three ro...

Exploration and correction of the weird behavior of parseInt() in js

Background: I wonder if you have noticed that if ...

isPrototypeOf Function in JavaScript

Table of contents 1. isPrototypeOf() Example 1, O...

Vue.js cloud storage realizes image upload function

Preface Tip: The following is the main content of...

Detailed Example of Row-Level Locking in MySQL

Preface Locks are synchronization mechanisms used...

How to center your HTML button

How to center your HTML button itself? This is ea...

How to solve the problem of forgetting the root password of Mysql on Mac

I haven't used mysql on my computer for a lon...