0% found this document useful (0 votes)
24 views

Angular Forms

Uploaded by

sam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

Angular Forms

Uploaded by

sam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Handling user input with forms is the cornerstone of many common applications.

Applications use forms to enable users to log in, to update a profile, to enter sensitive
information, and to perform many other data-entry tasks.

Angular provides two different approaches to handling user input through forms: reactive and
template-driven. Both capture user input events from the view, validate the user input, create
a form model and data model to update, and provide a way to track changes.

This guide provides information to help you decide which type of form works best for your
situation. It introduces the common building blocks used by both approaches. It also
summarizes the key differences between the two approaches, and demonstrates those
differences in the context of setup, data flow, and testing.

You might also like