What are the differences between reactive forms and template driven forms?
Below are the main differences between reactive forms and template driven forms
Feature | Reactive | Template-Driven |
---|---|---|
Form model setup | Created(FormControl instance) in component explicitly | Created by directives |
Data updates | Synchronous | Asynchronous |
Form custom validation | Defined as Functions | Defined as Directives |
Testing | No interaction with change detection cycle | Need knowledge of the change detection process |
Mutability | Immutable(by always returning new value for FormControl instance) | Mutable(Property always modified to new value) |
Scalability | More scalable using low-level APIs | Less scalable using due to abstraction on APIs |
May 11, 2022
195
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular