How to fix “Can’t bind to ‘formGroup’ since it isn’t a known property of ‘form'” in Angular

  Kiến thức lập trình

Can’t bind to ‘formGroup’ since it isn’t a known property of ‘form’.

I’ve faced this problem in my Angular app and import **FormsModule ** or ReactiveFormsModule doesn’t solved it.

So i’ve fixed this way:

Go to app.module.ts and insert your component inside @NgModule > declarations.

And of course import both modules i’ve quote above (FormsModule, ReactiveFormsModule).

It’s worked for me.

Tha’s will solve the problem.
At least, it’s worked for me.

So i’ve fixed this way:

Go to app.module.ts and insert your component inside @NgModule > declarations.

And of course import both modules FormsModule and ReactiveFormsModule.

It’s worked for me.

LEAVE A COMMENT