Let's talk about the issue of passing parameters to React onClick

Let's talk about the issue of passing parameters to React onClick

Background

In a list like the one below, clicking the Delete button requires the delete operation to be performed

List generation:

	{
		title: 'Operation',
		dataIndex: 'rowguid',
		key: 'rowguid',
	    render: (text, record) => (
		      <Space size="middle">
		        <Button type="primary" size="small" >Modify</Button>
		        <Button type="danger" size="small" >Delete</Button>
		      </Space>
			)
	}

I need to add an event when rendering and generating the delete button, and call it when it is clicked, and also pass parameters. This parameter

I started by writing:

But the problem is that the delByGuid function is executed when the page is loaded, and the output of our console is:

Not only that, when I clicked the delete button, the function was not executed. It seems that this is not allowed.

question:

1. Executed when the page is rendered

2. Click the button, onclick is not executed

Solution:

	{
		title: 'Operation',
		dataIndex: 'rowguid',
		key: 'rowguid',
	    render: (text, record) => (
		      <Space size="middle">
		        <Button type="primary" size="small" >Modify</Button>
		        <Button type="danger" size="small" onClick={(e)=>delByGuid(text)}>Delete</Button>
		      </Space>
			)
	}

onClick={(e)=>delByGuid(text)}

This solves the problem. It doesn't work when the page is loaded, but it can be called when it is clicked.

This is the end of this article about React onClick passing parameters. For more relevant React onClick passing parameters 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:
  • React passes parameters in several ways
  • Parameter passing between react components (detailed explanation)

<<:  Implementation of docker-compose deployment project based on MySQL8

>>:  Detailed deployment steps for MySQL MHA high availability configuration and failover

Recommend

A comprehensive summary of frequently used statements in MySQL (must read)

The knowledge points summarized below are all fre...

Example of implementing TikTok text shaking effect with CSS

In daily development, front-end students often ar...

Graphical explanation of the function call of proto file in Vue

1. Compile proto Create a new proto folder under ...

Example code for achieving hollowing effect with pure CSS

I have recently studied the hollowing effect. bac...

HTML input file control limits the type of uploaded files

Add an input file HTML control to the web page: &...

CSS3 flip card number sample code

I received a task from the company today, and the...

Docker nginx implements one host to deploy multiple sites

The virtual machine I rented from a certain site ...

Use CSS to create 3D photo wall effect

Use CSS to create a 3D photo wall. The specific c...

Nest.js hashing and encryption example detailed explanation

0x0 Introduction First of all, what is a hash alg...

Introduction to MySQL MHA operation status monitoring

Table of contents 1. Project Description 1.1 Back...

Why the disk space is not released after deleting data in MySQL

Table of contents Problem Description Solution Pr...

Shell script to monitor MySQL master-slave status

Share a Shell script under Linux to monitor the m...