Error cannot find name form control in angular; Through this tutorial, we will find a solution for error cannot find form control in angular applications.
And we can also use this solution with angular versions like angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, 15 and 16.
Angular Error Cannot find name Form Control
Now, we can see the solution of error cannot find name form control in angular; is as follow:
First of all, import FormControl from @angular/forms npm package; is as follow:
import { FormControl } from '@angular/forms';
Let’s see the example on how to import formcontrol from @angular/forms npm package; is as follow:
import { Component, OnInit } from '@angular/core'; import { FormGroup, Validators, FormControl} from '@angular/forms'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit{ title = 'my-new-app'; ngOnInit() { this.title = "Title Updated"; } form = new FormGroup({ name: new FormControl('', [Validators.required, Validators.minLength(3)]), email: new FormControl('', [Validators.required, Validators.email]), body: new FormControl('', Validators.required) }); get f(){ return this.form.controls; } submit(){ console.log(this.form.value); } }
Conclusion
Through this tutorial, we have found a solution for ‘error cannot find form control in angular applications’ and fix this error as well as.