0

Purpose of the FormsModule in Angular

 1 month ago
source link: https://www.geeksforgeeks.org/purpose-of-the-formsmodule-in-angular/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

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

  • Two-way Data Binding: One of the primary purposes of FormsModule is to provide two-way data binding between form controls and component properties. With two-way data binding, changes made in the template reflect in the component class and vice versa, enabling seamless synchronization of data between the view and the component.
  • Form Validation: Angular provides powerful form validation capabilities through FormsModule. It offers both template-driven and reactive form validation techniques. With FormsModule, you can easily implement built-in validators such as required, min, max, pattern, etc., as well as create custom validators to enforce specific validation rules.
  • Form Controls and Directives: FormsModule provides a set of directives and form controls that simplify the creation and management of forms in Angular applications. Directives like ngModel, ngForm, and ngModelGroup enable easy binding, grouping, and validation of form controls. Additionally, form controls like input, select, and textarea are enhanced with additional features and functionality when used within FormsModule.
  • Handling Form Submission: Another crucial aspect of FormsModule is handling form submission. It provides utilities to track the state of form controls, detect form submission events, and retrieve form data. This simplifies the process of submitting form data to backend services and handling responses effectively.
  • Error Handling and Feedback: FormsModule helps in displaying error messages and providing feedback to users during form interaction. It enables the dynamic display of validation errors, allowing users to identify and rectify input errors in real-time, thereby enhancing the overall user experience.

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.

HTML

<!-- 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>

JavascriptJavaScript

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.

HTML

<!-- 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>

JavascriptJavaScript

Output:

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

Output for example 2

“This course was packed with amazing and well-organized content! The project-based approach of this course made it even better to understand concepts faster. Also the instructor in the live classes is really good and knowledgeable.”- Tejas | Deutsche Bank

With our revamped Full Stack Development Program: master Node.js and React that enables you to create dynamic web applications.

So get ready for salary hike only with our Full Stack Development Course.

Last Updated : 22 Mar, 2024
Like Article
Save Article
Share your thoughts in the comments

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK