Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
MERN Quick Start Guide

You're reading from   MERN Quick Start Guide Build web applications with MongoDB, Express.js, React, and Node

Arrow left icon
Product type Paperback
Published in May 2018
Publisher Packt
ISBN-13 9781787281080
Length 302 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Eddy Wilson Iriarte Koroliova Eddy Wilson Iriarte Koroliova
Author Profile Icon Eddy Wilson Iriarte Koroliova
Eddy Wilson Iriarte Koroliova
Arrow right icon
View More author details
Toc

Table of Contents (8) Chapters Close

Preface 1. Introduction to the MERN Stack 2. Building a Web server with ExpressJS FREE CHAPTER 3. Building a RESTful API 4. Real-Time Communication with Socket.IO and ExpressJS 5. Managing State with Redux 6. Building Web Applications with React 7. Other Books You May Enjoy

Working with forms and inputs in React

Form-associated elements, such as <input> and <textarea>, usually maintain their own internal state and update it according to the user input. In React, when the input of a form-associated element is managed using the React state, it's called a controlled component.

By default, in React, if the value property of an input is not set, then the input internal state can be mutated by the user input. However, if the value property is set, then the input is read-only and it expects React to manage the user input by using the onChange React event and manage the input's state using the React state to update it if necessary. For example, this input React element will be rendered as read-only:

<input type="text" value="Ms.Huang Jx" /> 

However, because React expects to find an onChange event handler,...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime