Error 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

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *