Monday, September 23, 2024
Google search engine
HomeLanguagesAngularError Cannot find name Form Control in Angular

Error Cannot find name Form Control in Angular

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.

Recommended Tutorials

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments