The implementation of event binding this in React points to three methods

The implementation of event binding this in React points to three methods

1. Arrow Function

1. Take advantage of the fact that the arrow function itself does not bind this;

2. This in the render() method is the component instance, which can get setState();

class App extends React.Component {
    state = {
        count: 0
    }
    // Event handler onIncrement() {
        console.log('this in the event handling function:', this)
        this.setState({
            count:this.state.count+1
        })
    }
    // Rendering render() {
        return (
            <div>
                <h1>{this.state.count}</h1>
              //This in the arrow function points to the external environment, here is: render() method <button onClick={()=>this.onIncrement()}>+1</button>
                {/* <button onClick={this.onIncrement()}>+1</button> */}
            </div>
        )
    }
}

2. Function.proptype.bind()

1. Use the bind method in ES5 to bind this in the event handler to the component instance

class App extends React.Component {
    constructor() {
        super()
        // data this.state = {
            count: 0
        }
        // The first method.bind changes the this pointer, returns a function, and does not execute the function this.onIncrement = this.onIncrement.bind(this)
    }
     // Event handler onIncrement() {
         console.log('this in the event handling function:', this)
         this.setState({
             count:this.state.count+1
         })
     }
    // Rendering render() {
        return (
            <div>
                <h1>{this.state.count}</h1>
                <button onClick={this.onIncrement}>+1</button>
                {/* <button onClick={this.onIncrement()}>+1</button> */}
            </div>
        )
    }
}

3.Class instance methods

1. Using the class instance method in the form of an arrow function

2. This syntax is experimental, but it can be used directly due to the existence of babel

class App extends React.Component {
    constructor() {
        super()
        // data this.state = {
            count: 0
        }
    }
      // Event handler onIncrement=()=> {
        console.log('this in the event handling function:', this)
        this.setState({
            count:this.state.count+1
        })
    }
    // Rendering render() {
        return (
            <div>
                <h1>{this.state.count}</h1>
                <button onClick={this.onIncrement}>+1</button>
                {/* <button onClick={this.onIncrement()}>+1</button> */}
            </div>
        )
    }
}

This concludes this article on the implementation of three methods of event binding this in React. For more relevant React event binding this 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:
  • Detailed explanation of React event binding
  • Detailed explanation of four ways to bind this to events in React
  • Comparison of several methods of event binding in React learning
  • React event binding details

<<:  Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql

>>:  Use crontab command in Linux environment to set up scheduled periodic execution tasks [including PHP execution code]

Recommend

Use Visual Studio Code to connect to the MySql database and query

Visual Studio Code is a powerful text editor prod...

How to encapsulate timer components in Vue3

background When you open the product details on s...

How to manually scroll logs in Linux system

Log rotation is a very common function on Linux s...

MySQL uses init-connect to increase the implementation of access audit function

The mysql connection must first be initialized th...

HTML thead tag definition and usage detailed introduction

Copy code The code is as follows: <thead> &...

How to add vector icons to web font files in web page production

As we all know, there are two types of images in c...

Detailed example of IOS database upgrade data migration

Detailed example of IOS database upgrade data mig...

Vue simple implementation of turntable lottery

This article shares the specific code of Vue to s...

A brief analysis of the use of watchEffect in Vue3

Preface Everyone should be familiar with the watc...

A brief talk about MySQL semi-synchronous replication

Introduction MySQL achieves high availability of ...

TypeScript generic parameter default types and new strict compilation option

Table of contents Overview Create a type definiti...

MySQL 8.0.19 installation detailed tutorial (windows 64 bit)

Table of contents Initialize MySQL Install MySQL ...

Tutorial on Migrating Projects from MYSQL to MARIADB

Prepare the database (MySQL). If you already have...

Detailed explanation of system input and output management in Linux

Management of input and output in the system 1. U...