1. 15
    Handle Form Submissions in React
    7m 32s

Handle Form Submissions in React

InstructorAndy Van Slaars

Share this video with your friends

Send Tweet

The default behavior of an HTML form is to submit a GET request with the values of all its child inputs as URL query parameters. In React, we'd rather handle that within our components and avoid the need for server-side form handling code. In this lesson, we'll wire up a submit handler for a form and manage the submission and rendering updates in React.