Answers for "Error: Template parse errors: Can't bind to 'ngModel' since it isn't a known property of 'input'. ("label>Any Keywords</label>"

14

Can't bind to 'ngModel' since it isn't a known property of 'input'.

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

[...]

@NgModule({
  imports: [
    [...]
    FormsModule
  ],
  [...]
})
Posted by: Guest on April-29-2020
0

Uncaught Error: Template parse errors: Can't bind to 'ngModel'

Try to import FormModule an app.module.ts file

import { FormsModule } from '@angular/forms'

@NgModule({
  declarations: [
    ....
  ],
  imports: [
    ...,
    FormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
Posted by: Guest on April-14-2020

Code answers related to "Error: Template parse errors: Can't bind to 'ngModel' since it isn't a known property of 'input'. ("label>Any Keywords</label>"

Browse Popular Code Answers by Language