Open In App

Purpose of the FormsModule in Angular

Forms are widely used in web applications that allow you to provide the data, submit the forms, and interact with the application. In Angular for handling the forms, we use Forms Module which imports several powerful tools for creating, managing, and validating forms. In this article, we'll cover the purpose of the forms module, syntax, concepts, and examples related to Angular forms.

What is FormsModule?

FormsModule is a built-in Angular module provided by @angular/forms package. It enables two-way data binding, form validation, and other form-related functionalities within Angular applications. By importing and including FormsModule in your Angular application, you gain access to a range of directives, services, and utilities that streamline the process of working with forms.

Syntax: To use Forms module, we first have to import it into the app.module.ts from @angular/forms.

import { FormsModule } from '@angular/forms';

@NgModule({
// Other modules ...
imports: [BrowserModule, FormsModule],
})
export class AppModule {}

Type of Forms

1. Template-Driven Forms

Template-driven forms mainly depends on angular directives. It relies on two-way data binding using "[(ngModel)]" directive allowing us to interact with the component directly. Here the form controls are automatically and state of the form is tracked by angular itself.

2. Reactive Forms

Reactive forms provide the direct access to the underlaying form's object model. Here user have to create instances of FormControl, FormGroup and FormArray explicitly allowing more control and flexibility.

Purpose of Forms Module

Example 1: Form Handling using Template Driven forms.

In this example, we'll see form submission and handling of form data using Template Driven forms.

Step 1: Create a new Angular project by running the below command.

ng new <project_name>

Folder Structure:

project_struc1

Project Structure

Dependencies:

"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/platform-server": "^17.3.0",
"@angular/router": "^17.3.0",
"@angular/ssr": "^17.3.0",
"express": "^4.18.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.4.2"
}

Code Example: Add the following codes in the required files.

<!-- app.component.html -->

<form #userForm="ngForm" (ngSubmit)="onSubmit()">
    <label for="name">Name:</label>
    <input type="text" id="name" name="name" [(ngModel)]="user.name" required>

    <label for="email">Email:</label>
    <input type="email" id="email" name="email" [(ngModel)]="user.email" required>

    <button type="submit">Submit</button>
</form>
<h3>User Details</h3>
<p>{{userDetails}}</p>
// app.module.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';
import { FormsModule } from '@angular/forms';

@NgModule({
    declarations: [AppComponent],
    imports: [BrowserModule, FormsModule],
    providers: [],
    bootstrap: [AppComponent],
})
export class AppModule { }
// app.component.ts

import { Component } from '@angular/core';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css'],
})
export class AppComponent {
    user = { name: '', email: '' };
    userDetails = 'Loading...';
    onSubmit() {
        this.userDetails =
            'User name is ' + this.user.name + ' and email is ' + this.user.email;
    }
}

Output:

trusting-brahmagupta-CodeSandbox-GoogleChrome2024-03-1323-02-15-ezgifcom-video-to-gif-converter

Output for example 1

Example 2: Form Handling using Reactive Forms.

In this example, we'll see form submission and handling of form data using Reactive forms.

Code Example: Add the following codes in the respective files.

<!-- app.component.html -->

<form [formGroup]="myForm" (ngSubmit)="onSubmit()">
    <label for="name">Name:</label>
    <input type="text" id="name" formControlName="name">

    <label for="email">Email:</label>
    <input type="email" id="email" formControlName="email">

    <button type="submit">Submit</button>
</form>
<h3>Form Details</h3>
<p>{{formDetails}}</p>
// app.module.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

@NgModule({
    declarations: [AppComponent],
    imports: [BrowserModule, FormsModule, ReactiveFormsModule],
    providers: [],
    bootstrap: [AppComponent],
})
export class AppModule { }
//app.component.ts 

import { Component } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css'],
})
export class AppComponent {
    myForm: FormGroup = {} as FormGroup;
    formDetails: string = 'loading...';
    constructor(private fb: FormBuilder) { }

    ngOnInit() {
        this.myForm = this.fb.group({
            name: ['', [Validators.required]],
            email: ['', [Validators.required, Validators.email]],
        });
    }

    onSubmit() {
        this.formDetails =
            'Name: ' + this.myForm.value.name + ' Email:' + this.myForm.value.email;
    }
}

Output:

trusting-brahmagupta-CodeSandbox-GoogleChrome2024-03-1323-14-09-ezgifcom-video-to-gif-converter

Output for example 2

Article Tags :