React

Madeleine Moser

Handling Events

Handling events with React elements is very similar to handling events on DOM elements.

Madeleine Moser
Handling Events

Internal navigation

You can visit this post, or this page, go back to the homepage or just back to the archive.

Passing Arguments to Event Handlers

Inside a loop, it is common to want to pass an extra parameter to an event handler. For example, if id is the row ID, either of the following would work:

jsx
<button onClick={(e) => this.deleteRow(id, e)}>Delete Row</button>
<button onClick={this.deleteRow.bind(this, id)}>Delete Row</button>

The above two lines are equivalent, and use arrow functions and Function.prototype.bind respectively.

Handling Events - Image

In both cases, the e argument representing the React event will be passed as a second argument after the ID. With an arrow function, we have to pass it explicitly, but with bind any further arguments are automatically forwarded.

We provide premium nursery stock

along with technology-led garden consultancy and design services to both private and public sector organisations large and small.

صُنع باستخدام React و Gatsby و DatoCMS بواسطةsmastrom

ساهم أو نجمة على GitHub