982

THE SITUATION:

Please help! I am trying to make what should be a very simple form in my Angular2 app but no matter what it never works.

ANGULAR VERSION:

Angular 2.0.0 Rc5

THE ERROR:

Can't bind to 'formGroup' since it isn't a known property of 'form'

enter image description here

THE CODE:

The view:

<form [formGroup]="newTaskForm" (submit)="createNewTask()">
   <div class="form-group">
      <label for="name">Name</label>
      <input type="text" name="name" required>
   </div>
   <button type="submit" class="btn btn-default">Submit</button>
</form>

The controller:

import { Component } from '@angular/core';
import { FormGroup, FormControl, Validators, FormBuilder }  from '@angular/forms';
import {FormsModule,ReactiveFormsModule} from '@angular/forms';
import { Task } from './task';

@Component({
    selector: 'task-add',
    templateUrl: 'app/task-add.component.html'

})
export class TaskAddComponent {

    newTaskForm: FormGroup;

    constructor(fb: FormBuilder) 
    {
        this.newTaskForm = fb.group({
            name: ["", Validators.required]
        });
    }

    createNewTask()
    {
        console.log(this.newTaskForm.value)
    } 
}

The ngModule:

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule }   from '@angular/forms';

import { routing }        from './app.routing';
import { AppComponent }  from './app.component';
import { TaskService } from './task.service'

@NgModule({
    imports: [ 
        BrowserModule,
        routing,
        FormsModule
    ],
    declarations: [ AppComponent ],
    providers: [
        TaskService
    ],
    bootstrap: [ AppComponent ]
})
export class AppModule { }

THE QUESTION:

Why am I getting that error?

Am I missing something?

HDJEMAI
  • 7,766
  • 41
  • 60
  • 81
FrancescoMussi
  • 17,011
  • 36
  • 113
  • 166
  • Make sure that you import the ReactiveFormsModule to the module you use forms with ( for instance auth.module , form.module ) not the app.module . https://angular.io/guide/reactive-forms – Hos Mercury Jan 27 '21 at 02:51

35 Answers35

1651

RC5 FIX

You need to import { REACTIVE_FORM_DIRECTIVES } from '@angular/forms' in your controller and add it to directives in @Component. That will fix the problem.

After you fix that, you will probably get another error because you didn't add formControlName="name" to your input in form.

RC6/RC7/Final release FIX

To fix this error, you just need to import ReactiveFormsModule from @angular/forms in your module. Here's the example of a basic module with ReactiveFormsModule import:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AppComponent }  from './app.component';

@NgModule({
    imports: [
        BrowserModule,
        FormsModule,
        ReactiveFormsModule
    ],
    declarations: [
        AppComponent
    ],
    bootstrap: [AppComponent]
})

export class AppModule { }

To explain further, formGroup is a selector for directive named FormGroupDirective that is a part of ReactiveFormsModule, hence the need to import it. It is used to bind an existing FormGroup to a DOM element. You can read more about it on Angular's official docs page.

Stefan Svrkota
  • 40,477
  • 8
  • 90
  • 83
  • 16
    What I don't get is why one needs to add REACTIVE_FORM_DIRECTIVES if FormsModule is being imported inside app.module. The whole point of modules is to avoid having to declare directives inside components. – Daniel Pliscki Sep 01 '16 at 14:21
  • 25
    @DanielPliscki You are completely right, I just found out they fixed this problem in RC6 version that was released today. Now you don't need to do this, you only need to import `FormsModule` and `ReactiveFormsModule`. I will edit my answer. – Stefan Svrkota Sep 01 '16 at 14:24
  • @StefanSvrkota i got this error when i build system in webpack production mode but i build it with a development environment its working fine any idea ? – LittleDragon Mar 09 '17 at 05:47
  • 16
    I LOST AN HOUR completing forgetting that I created a separate module for my login form in order to lazy load with modules between states. (I am new to A2, still prefer A1) Please make sure you use the right module! Don't be a schmuck like me. You also no longer need to add to the component. The imports in your module suffice. Thanks – user1889992 Mar 18 '17 at 23:55
  • 5
    Thanks, worked for me. I am confused why this is not mentioned in the guides for FormControls in Angular 2 that I have stumbled upon.. – cjohansson Apr 19 '17 at 08:14
  • 2
    In Angular 4 I added `ReactiveFormsModule` in the provider list and it worked. Not sure if this is the way you are supposed to do it though. – BrunoLM Jul 18 '17 at 10:55
  • 1
    I would like to add that I ran into this bug because of casing - I had used [FormControl] instead of [formControl] – iJungleBoy Sep 12 '17 at 20:42
  • Thanks ! Works fine with Angular 6 – XenoX Dec 19 '18 at 09:17
  • You also have to do this in every involved submodule.https://github.com/angular/angular/issues/14288#issuecomment-282531453 – Aarón Cárdenas Apr 03 '19 at 00:54
  • Make sure the change is done in the `imports` section not in the `declarations` – Mauricio Gracia Gutierrez May 08 '19 at 16:22
  • If Not working again int Ionic android development then put it each module of your page. – SHUBHASIS MAHATA Nov 02 '19 at 18:51
  • I am happy to announce this solution is covered by Assistant https://medium.com/@tomaszs2/mapping-stackoverflow-into-real-time-assistance-e627dda88f69 – Tomasz Smykowski Jul 26 '20 at 08:55
178

Angular 4 in combination with feature modules (if you are for instance using a shared-module) requires you to also export the ReactiveFormsModule to work.

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

@NgModule({
  imports:      [
    CommonModule,
    ReactiveFormsModule
  ],
  declarations: [],
  exports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule
  ]
})
export class SharedModule { } 
Sahil
  • 1,123
  • 10
  • 27
Undrium
  • 2,319
  • 1
  • 14
  • 24
149

Ok after some digging I found a solution for "Can't bind to 'formGroup' since it isn't a known property of 'form'."

For my case, I've been using multiple modules files, i added ReactiveFormsModule in app.module.ts

 import { FormsModule, ReactiveFormsModule } from '@angular/forms';`

@NgModule({
  declarations: [
    AppComponent,
  ]
  imports: [
    FormsModule,
    ReactiveFormsModule,
    AuthorModule,
],
...

But this wasn't working when I use a [formGroup] directive from a component added in another module, e.g. using [formGroup] in author.component.ts which is subscribed in author.module.ts file:

import { NgModule }       from '@angular/core';
import { CommonModule }   from '@angular/common';
import { AuthorComponent } from './author.component';

@NgModule({
  imports: [
    CommonModule,
  ],
  declarations: [
    AuthorComponent,
  ],
  providers: [...]
})

export class AuthorModule {}

I thought if i added ReactiveFormsModule in app.module.ts, by default ReactiveFormsModule would be inherited by all its children modules like author.module in this case... (wrong!). I needed to import ReactiveFormsModule in author.module.ts in order to make all directives to work:

...
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
...

@NgModule({
  imports: [
    ...,
    FormsModule,    //added here too
    ReactiveFormsModule //added here too
  ],
  declarations: [...],
  providers: [...]
})

export class AuthorModule {}

So, if you are using submodules, make sure to import ReactiveFormsModule in each submodule file. Hope this helps anyone.

Ciarán Bruen
  • 4,713
  • 13
  • 53
  • 65
Ashutosh Jha
  • 11,603
  • 8
  • 42
  • 72
  • 1
    Works for me, exactly the same problem, I really thought modules in exports array will be inherited by children modules... Don't know why exactly ! EDIT : [documentation says](https://angular.io/api/core/NgModule#exports) exports is to make components, pipes, directives available in the TEMPLATE of any COMPONENT () – guy777 Nov 22 '18 at 21:24
  • This is **the solution** if you use **lazy loading** or work with **multiple modules**. Thanks. – Murat Yıldız Oct 03 '20 at 18:18
61

I have encountered this error during unit testing of a component (only during testing, within application it worked normally). The solution is to import ReactiveFormsModule in .spec.ts file:

// Import module
import { ReactiveFormsModule } from '@angular/forms';

describe('MyComponent', () => {
    beforeEach(async(() => {
        TestBed.configureTestingModule({
            declarations: [MyComponent],
            imports: [ReactiveFormsModule],  // Also add it to 'imports' array
        })
        .compileComponents();
    }));
});
xuhcc
  • 2,073
  • 22
  • 23
25

The suggested answer did not work for me with Angular 4. Instead I had to use another way of attribute binding with the attr prefix:

<element [attr.attribute-to-bind]="someValue">
str
  • 33,096
  • 11
  • 88
  • 115
  • 4
    Hey man! Are you sure your answer is related to the question? :) The question was about an issue setting up a form - cause by not properly setting up the ngModule – FrancescoMussi Apr 26 '17 at 14:24
  • 1
    @johnnyfittizio Pretty sure. Same scenario, same error message. – str Apr 26 '17 at 14:47
  • 2
    This worked for me, but is strange - why do I need the `attr.` ? – CodyBugstein Oct 26 '17 at 21:17
  • Thanks a ton. This worked for me also, but I would think there must be something else triggering the problem, like library versioning, or
    tag positioning? Strange.
    – Memetican Mar 14 '19 at 23:33
  • Found it- the problem was that I needed to import `ReactiveFormsModule` directly into my page's `.module.ts`. Not the `.page.ts`... once I did that, my template could correctly identify the `formGroup` attribute, without the `attr.` prefix. – Memetican Mar 15 '19 at 00:37
22

The error says that FormGroup is not recognized in this module. So You have to import these(below) modules in every module that uses FormGroup

import { FormsModule, ReactiveFormsModule } from '@angular/forms';

Then add FormsModule and ReactiveFormsModule into your Module's imports array.

imports: [
  FormsModule,
  ReactiveFormsModule
],

You may be thinking that I have already added it in AppModule and it should inherit from it? But it is not. because these modules are exporting required directives that are available only in importing modules. Read more here... https://angular.io/guide/sharing-ngmodules.

Other factors for these errors may be spell error like below...

[FormGroup]="form" Capital F instead of small f

[formsGroup]="form" Extra s after form

Abhishek Singh
  • 1,377
  • 1
  • 13
  • 28
19

If you have to import two modules then add like this below

import {ReactiveFormsModule,FormsModule} from '@angular/forms';
@NgModule({
  declarations: [
    AppComponent,
    HomeComponentComponent,
    BlogComponentComponent,
    ContactComponentComponent,
    HeaderComponentComponent,
    FooterComponentComponent,
    RegisterComponent,
    LoginComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    routes,
    ReactiveFormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
sudheer nunna
  • 1,192
  • 12
  • 16
15

Keep in mind that if you have defined "Feature Modules", you'll need to import in the Feature Module, even if you already imported to the AppModule. From the Angular documentation:

Modules don't inherit access to the components, directives, or pipes that are declared in other modules. What AppModule imports is irrelevant to ContactModule and vice versa. Before ContactComponent can bind with [(ngModel)], its ContactModule must import FormsModule.

https://angular.io/docs/ts/latest/guide/ngmodule.html

Ian Griffin
  • 151
  • 1
  • 4
  • thank you so much! I was working for hours on this issue, can't imagine what the problem was... Simply importing my feature Module to app Module fixed the issue. – keschra Nov 24 '20 at 10:44
14

I had the same issue with Angular 7. Just import following in your app.module.ts file.

import { FormsModule, ReactiveFormsModule } from '@angular/forms';

Then add FormsModule and ReactiveFormsModule in to your imports array.

imports: [
  FormsModule,
  ReactiveFormsModule
],
Chamila Maddumage
  • 1,956
  • 1
  • 17
  • 32
10

This problem occurs due to missing import of FormsModule,ReactiveFormsModule .I also came with same problem. My case was diff. as i was working with modules.So i missed above imports in my parent modules though i had imported it into child modules,it wasn't working.

Then i imported it into my parent modules as below, and it worked!

import { ReactiveFormsModule,FormsModule  } from '@angular/forms';
import { AlertModule } from 'ngx-bootstrap';

         @NgModule({
          imports: [
            CommonModule,
            FormsModule,
            ReactiveFormsModule,
    ],
      declarations: [MyComponent]
    })
Saurav
  • 344
  • 3
  • 4
8

I was coming across this error when trying to do e2e testing and it was driving me crazy that there were no answers to this.

IF YOU ARE DOING TESTING, find your *.specs.ts file and add :

import {ReactiveFormsModule, FormsModule} from '@angular/forms';
Mr Giggles
  • 1,521
  • 1
  • 13
  • 26
7

For people strolling these threads about this error. In my case I had a shared module where I only exported the FormsModule and ReactiveFormsModule and forgot to import it. This caused a strange error that formgroups were not working in sub components. Hope this helps people scratching their heads.

GKooij
  • 71
  • 1
  • 1
7

Don't be a dumb dumb like me. Was getting the same error as above, NONE of the options in this thread worked. Then I realized I capitalized 'F' in FormGroup. Doh!

Instead Of:

[FormGroup]="form"

Do:

[formGroup]="form"
nik7
  • 747
  • 2
  • 8
  • 17
flyer
  • 997
  • 6
  • 12
6

A LITTLE NOTE: Be careful about loaders and minimize (Rails env.):

After seeing this error and trying every solution out there, i realised there was something wrong with my html loader.

I've set my Rails environment up to import HTML paths for my components successfully with this loader (config/loaders/html.js.):

module.exports = {
  test: /\.html$/,
  use: [ {
    loader: 'html-loader?exportAsEs6Default',
    options: {
      minimize: true
    }
  }]
}

After some hours efforts and countless of ReactiveFormsModule imports i saw that my formGroup was small letters: formgroup.

This led me to the loader and the fact that it downcased my HTML on minimize.

After changing the options, everything worked as it should, and i could go back to crying again.

I know that this is not an answer to the question, but for future Rails visitors (and other with custom loaders) i think this could be helpfull.

6

Import and register ReactiveFormsModule in your app.module.ts.

import { ReactiveFormsModule } from '@angular/forms';

@NgModule({
declarations: [
AppComponent,
HighlightDirective,
TestPipeComponent,
ExpoentialStrengthPipe

],
imports: [
BrowserModule,
ReactiveFormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

Make sure your spelling is correct in both .ts and .html file. xxx.ts

  profileForm = new FormGroup({
  firstName: new FormControl(''),
 lastName: new FormControl('')
 });

xxx.html file-

  <form [formGroup]="profileForm"> 
  <label>
  First Name:
   <input type="text" formControlName = "firstName">
  </label>

  <label>
  Last Name:
   <input type="text" formControlName = "lastName">
   </label>
   </form>

I was by mistake wrote [FormGroup] insted of [formGroup]. Check your spelling correctly in .html. It doesn't throw compile time error If anything wrong in .html file.

5

using and import REACTIVE_FORM_DIRECTIVES:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AppComponent }  from './app.component';

@NgModule({
    imports: [
        BrowserModule,
        FormsModule,
        ReactiveFormsModule
    ],
    declarations: [
        AppComponent
    ],
    bootstrap: [AppComponent]
})

export class AppModule { }
mojtaba ramezani
  • 1,191
  • 11
  • 13
5

If you have this problem when you developing a component so you should add these two modules to your closest module :

import { FormsModule, ReactiveFormsModule } from '@angular/forms';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
   // other modules
    FormsModule,
    ReactiveFormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

And if you are developing a test for your components so you should add this module to your test file like this:

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ContactusComponent } from './contactus.component';
import { ReactiveFormsModule } from '@angular/forms';

describe('ContactusComponent', () => {
  let component: ContactusComponent;
  let fixture: ComponentFixture<ContactusComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ContactusComponent],
      imports:[
        ReactiveFormsModule
      ]

    })
      .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(ContactusComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
Hamid
  • 420
  • 4
  • 13
5

Import ReactiveFormsModule in the corresponded module

Meghnath Das
  • 85
  • 1
  • 6
5

I had the same problem, make sure that if using submodules (for example, you not only have app.component.module.ts, but you have a separate component such as login.module.ts, that you include ReactiveFormsModule import in this login.module.ts import, for it to work. I don't even have to import ReactiveFormsModule in my app.component.module because I'm using submodules for everything.

login.module.ts:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';

import { IonicModule } from '@ionic/angular';

import { LoginPageRoutingModule } from './login-routing.module';

import { LoginPage } from './login.page';

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule,
    IonicModule,
    LoginPageRoutingModule
  ],
  declarations: [LoginPage]
})
export class LoginPageModule {}
Peter Edwards
  • 106
  • 1
  • 3
  • that was also a problem in my case. I had enter-credentials-modal-component and login-site-component. it did not work until I did import of FormsModule and ReactiveFormsModule for both of them – Jacob Mar 22 '21 at 22:55
5

Simple solution :

step 1: import ReactiveFormModule

import {ReactiveFormsModule} from '@angular/forms';

step 2: add "ReactiveFormsModule" to import section

imports: [

    ReactiveFormsModule
  ]

Step 3: restart App and Done

Example :

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {ReactiveFormsModule} from '@angular/forms';
import { EscalationManagementRoutingModule } from './escalation-management-routing.module';
import { EscalationManagementRouteWrapperComponent } from './escalation-management-route-wrapper.component';


@NgModule({
  declarations: [EscalationManagementRouteWrapperComponent],
  imports: [
    CommonModule,
    EscalationManagementRoutingModule,
    ReactiveFormsModule
  ]
})
export class EscalationManagementModule { }
Shashwat Gupta
  • 3,139
  • 23
  • 21
4

Note: if you are working inside child module's component, then you just have to import ReactiveFormsModule in child module rather than parent app root module.

nik7
  • 747
  • 2
  • 8
  • 17
Mabd
  • 1,411
  • 12
  • 13
4

Might help someone:

when you have a formGroup in a modal (entrycomponent), then you have to import ReactiveFormsModule also in the module where the modal is instantiated.

tonertop
  • 51
  • 2
3

if this is just a typescript error but everything on your form works,you may just have to restart your IDE

Avi E. Koenig
  • 107
  • 1
  • 10
2

Can't bind to 'formGroup' since it isn't a known property of 'form'

means that you try to bind a property using angular ([prop]) but angular cant find anything he knows for that element (in this case form).

this can happen by not using the right module (missing an import somewhere in the way) and sometimes just cause a typo like:

[formsGroup], with s after form

bresleveloper
  • 5,430
  • 3
  • 31
  • 45
2

Firstly, it is not related to Angular versions>2. Just import following in your app.module.ts file will fix the problems.

import { FormsModule, ReactiveFormsModule } from '@angular/forms';

Then add FormsModule and ReactiveFormsModule in to your imports array.

imports: [
  FormsModule,
  ReactiveFormsModule
],

Note : You can also import ReactiveFormsModule to specific module instead to app.module.ts

2

import { FormsModule, ReactiveFormsModule } from '@angular/forms'; and add it in imports array in the app-module.ts file.

2

I've been struggling with this error during the last 3 days. I added the ReactiveFormsModule and FormsModule as mentionned in the comments above in both of my modules but it had no effect until I reloaded my project with another "ng serve". I don't know why it didn't reload automatically but at least i'm glad it worked finally! Any explanation please?

  • 1
    See this: https://stackoverflow.com/questions/49884563/angular-how-to-fix-property-does-not-exist-on-type-error. It happened because sometimes your code is not transpiled and you are seeing old code. – Gaurav Chauhan Oct 01 '20 at 06:12
2

You need to import the FormsModule, ReactiveFormsModule in this module as well as the top level.

If you used a reactiveForm in another module then you've to do also this step along with above step: import also reactiveFormsModule in that particular module.

For example:

imports: [
  BrowserModule,
  FormsModule,
  ReactiveFormsModule,
  AppRoutingModule,
  HttpClientModule,
  BrowserAnimationsModule
],
Zsolt Meszaros
  • 8,506
  • 12
  • 20
  • 30
Rohit
  • 35
  • 5
1

You can get this error message even if you have already imported FormsModule and ReactiveFormsModule. I moved a component (that uses the [formGroup] directive) from one project to another, but failed to add the component to the declarations array in the new module. That resulted in the Can't bind to 'formGroup' since it isn't a known property of 'form' error message.

Trevor
  • 11,966
  • 11
  • 74
  • 94
  • have you tried to reload the project with an ng serve after the modification? (if you have embedded modules, you must import the form ans reactive form modules in each and every module using formGroup) – Oumaima Abouzaid Sep 24 '20 at 10:29
1
  1. Your Angular version is 11+, and you use VisualStudioCode?

  2. And you have already imported FormsModule, ReactiveFormsModule and added it into your imports-section within app.module.ts:

// app.module.ts (excerpt)
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
imports: [
  ...
  FormsModule,
  ReactiveFormsModule,
  ...
],
  1. And you have the right imports (sometimes there are other libs with similar names), you have defined and initialized your form in your component?
// MyWonderfulComponent (excerpt)


import { FormBuilder, FormGroup, Validators } from '@angular/forms';

export class MyWonderfulComponent implements OnInit {
  form: FormGroup; 
  ...
  constructor (private fb: FormBuilder) {
    this.form = this.fb.group({
      // DON'T FORGET THE FORM INITIALISATION
    });
  }
  1. Your Component-Template has your form:
<form [formGroup]="form" (ngSubmit)="submit()">
  <!-- MY FORM CONTROLS ARE ALREADY HERE --> 
</form>
  1. And you still get the error message "...since it isn't a known property of..." ?

then just simple restart your VisualStudioCode :)

Lonely
  • 5,174
  • 6
  • 33
  • 67
0

My solution was subtle and I didn't see it listed already.

I was using reactive forms in an Angular Materials Dialog component that wasn't declared in app.module.ts. The main component was declared in app.module.ts and would open the dialog component but the dialog component was not explicitly declared in app.module.ts.

I didn't have any problems using the dialog component normally except that the form threw this error whenever I opened the dialog.

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

NDavis
  • 917
  • 1
  • 11
  • 20
0

I had the same issue and the problem was in fact only that I forgot to import and declare the component which holds the form in the module:

import { ContactFormComponent } from './contact-form/contact-form.component';

@NgModule({
    declarations: [..., ContactFormComponent, ...],
    imports: [CommonModule, HomeRoutingModule, SharedModule]
})
export class HomeModule {}
yglodt
  • 11,334
  • 13
  • 74
  • 114
0

import below line in app.modual.ts file and run command ng s -o in angular cli.

import { FormsModule, ReactiveFormsModule } from '@angular/forms';
Deven
  • 410
  • 6
  • 7
0

You need to import the FormsModule, ReactiveFormsModule in this module

If you used a reactiveForm in another module then you've to do also this step along with above step: import also reactiveFormsModule in that particular module.

For example:

imports: [
  FormsModule,
  ReactiveFormsModule,
  
],
Naeem Bashir
  • 169
  • 2
  • 8
-2

Once I added my module to the AppModule everything started working fine.

S.S. Anne
  • 13,819
  • 7
  • 31
  • 62
Leandro
  • 572
  • 4
  • 19