Skip to content
Related Articles
Open in App
Not now

Related Articles

AngularJS Forms ngSubmit() Method

Improve Article
Save Article
Like Article
  • Last Updated : 14 Jun, 2021
Improve Article
Save Article
Like Article

In this article, we are going to see what is ngSubmit method in Angular 10 and how to use it.

The ngSubmit() method is called when the ‘submit’ event is triggered on the ngForm.

Syntax:

<form (ngSubmit)='method($event)'></form>

Parameters:

  • $event: the “submit” event object

 

Approach: 

  • Create an Angular app that to be used.
  • In app.component.ts, make an array that takes the value from the form.
  • In app.component.html, make a form and send the value using (ngSubmit) method.
  • Serve the angular app using ng serve to see the output.

Example:

app.component.ts




import { Component, Inject } from '@angular/core';
import { FormGroup, FormControl, FormArray, NgForm } from '@angular/forms'
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
    submit(form: NgForm) {
        console.log(form.value);   
    }
}

app.component.html




<form #form="ngForm" (ngSubmit)="submit(form)" novalidate>
    <input name="first" ngModel required #first="ngModel">
    <input name="last" ngModel>
    <button>Submit</button>
</form>

Output:

Reference: https://angular.io/api/forms/NgForm#onsubmit

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!