In Angular, there are two ways to work with web forms: template driven forms
and reactive forms
. In template driven form
, we use angular directives to build the internal representation of form in the html template file. Most of the code is written in html template file, making it sometimes difficult to understand and test.
Benefits
There are few benefits of using reactive form over the template forms. These are:
- Add form controls more dynamically
- Add form validation dynamically
- Using custom validations
Reactive Form Programming
To start with reactive form programming, you should know about these classes:
FormControl
- Tracks the value and validation status of an individual form control.FormGroup
- Tracks the value and validity state of a group of FormControl instances.FormBuilder
- A service that is used to build FormGroups easily.
Setting the project
|
|
|
|
|
|
Add the ReactiveFormsModule in the Module file
In order to use Reactive Forms in your app, we have to first import ReactiveFormsModule
in app.module.ts
from @angular/forms
, and then add in the @NgModule
imports array.
app.module.ts
|
|
A Basic Control: FormControl
Let’s first create our generalInfo component in the app.
|
|
To create any form control, we first have to import FormControl from @angular/forms
package into our component.
After importing FormControl, we will create an instance of our form control firstName.
We can use the FormControl constructor to set the initial value of the control. Here, we are setting the empty string in the constructor.
Placing form control in template
After creating our first form control firstName
in the controller file, it’s time to place this control in our html template file. Let’s put our form control in template.
general-info.component.html
|
|
Using the template binding syntax, we bind our form control to the firstName
input box in the template.
Displaying our component
In order to display our component in the browser window, we are going to place it in the app.component.html
file.
app.component.html
|
|
Notice line 7, we have placed our component <app-general-info></app-general-info>
in this template. Now, let’s see how our form looks like in browser window.
Accessing Form Control Values
In reactive forms, you can access any form control state and value at any point of time. You can then manipulate the form control values from the component class or component template. Let’s see how to display our form control value in component template file.
Accessing form control value in template file
You can access and display the form control value using the value
property.
general-info.component.html
|
|
The value on the form will change as you type in the form input control firstName
.
As you can see in above screenshot, as we type zeptobook
in our form control firstName, it is immediately displayed below.
Accessing and setting the form control value in component class
Like you access form control value in component template file, you can access it in component class programmatically. You can manipulate value here in component class file.
Let’s see how to set the control value programmatically. In the general-info.component.ts
file, we have a method updateFirstName()
, and set the form control value ZeptoBook using this.firstName.setValue('ZeptoBook')
.
general-info.component.ts
|
|
general-info.component.html
Now, we have to write code to call this method from button click event. Let’s create a button and attach updateFirstName() method to button’s click event.
|
|
Now, when user click on this button, it will set the form control value to ZeptoBook
and update this in input box and label.
Setting initial value in form control
We can also set some initial value while creating the form control. Remember, we put empty string while creating our firstName form control. Now, let’s see how to use form control constructor to initialize the value in the form control.
general-info.component.ts
|
|
Here, we have created an age form control and initialized its value to 18 in its constructor. Accessing the age form control in the component template file.
general-info.component.html
|
|
Now, open the browser and see the output.
Here you can see, Age
input box and label is showing the initialized value of 18, which you can change anytime.
Now, let’s have a look at complete code.
general-info.component.ts
|
|
general-info.component.html
|
|
Grouping Form Controls: FormGroup
Above we read about basic form control, now let’s move forward to group of form controls called FormGroup
. FormGroup is used to track the value and validation state of form control.
Let’s create a new component app-form-group
to demonstrate FormGroup.
|
|
Import FormGroup and FormControl
After generating our new component, it’s time to import these classes in component class.
form-group.component.ts
|
|
Create FormGroup instance
Let’s create a property in our component class called sampleForm
and set the property to a new Form Group instance. In the Form Group instance constructor, we have created these form control instances.
form control instances in form group
- firstName
- lastName
- address
- city
form-group.component.ts
|
|
Attaching FormGroup model with component view
Once we created sampleForm control in component class, it’s time to bind FormGroup model to our component view template.
Let’s see the syntax how to bind the model to view.
form-group.component.html
|
|
We have add a submit button, and add ngSubmit
event. On pressing submit event, we are firing onSubmit()
function of the component class. Let’s see the complete code.
form-group.component.ts
|
|
form-group.component.html
|
|
Also, in order to display this component in browser, I have commented our previous component app-general-info
, and placed our app-form-group
component. See the commented line 7.
|
|
Now, once you open your browser, and see the screen, it looks like this.
On submit, output will be rendered in browser console.window.
Now, see the red marked area in console log.
Easy way to generate Form Control: FormBuilder
When we have multiple forms, then it become very tedious and repetitive to create form controls. FormBuilder service is a easy way for generating form controls.
Let’s create a new component app-form-group
to demonstrate FormGroup.
|
|
Import FormBuilder
After generating our new component, it’s time to import these FormBuilder
in component class.
form-builder.component.ts
|
|
Inject FormBuilder in Constructor
form-builder.component.ts
|
|
Creating the form controls
Here we are going to create a simple login form, having username and password form controls in component class.
|
|
Now, notice the syntax, the declaration of FormGroup
and FormControl
are now implicit. This saves a lot of our code. We only need to have fields name with the default values.
Attaching FormBuilder model with component view
form-builder.component.html
|
|
If you see, we have a submit button, and attached login()
function to this submit button. See the login() function in the component class file.
|
|
Add this component in app.component.html
file
|
|
Open the browser, and see the result.
See the red marked console log. You can see the username and password fields values. The complete code is:
form-builder.component.ts
|
|
form-builder.component.html
|
|
In this way, we created our simple form using the FormBuilder.
Summary
In this post, we learned about reactive form programming using the FormControl, FormGroup and FormBuilder. These are more powerful way of creating forms as compared to template driven approach. You can do lot of things in the component class file, making the component template file light and thin, containing only html syntax. This approach is also useful for testing purpose.
I hope you enjoyed more reading this blog.
Reference
https://angular.io/guide/reactive-forms