BackgroundIn 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:
|
<<: Implementation of docker-compose deployment project based on MySQL8
>>: Detailed deployment steps for MySQL MHA high availability configuration and failover
The knowledge points summarized below are all fre...
In daily development, front-end students often ar...
1. Compile proto Create a new proto folder under ...
I have recently studied the hollowing effect. bac...
Add an input file HTML control to the web page: &...
The method found on the Internet works The footer ...
I rewrote my personal website recently. I bought ...
Deploy the MySQL environment locally (192.168.1.1...
I received a task from the company today, and the...
The virtual machine I rented from a certain site ...
Use CSS to create a 3D photo wall. The specific c...
0x0 Introduction First of all, what is a hash alg...
Table of contents 1. Project Description 1.1 Back...
Table of contents Problem Description Solution Pr...
Share a Shell script under Linux to monitor the m...