Для використання [(ngModel)]
у Angular 2 , 4 і 5+ вам потрібно імпортувати FormsModule з кутової форми ...
Також він знаходиться на цьому шляху під формами у Angular repo in github :
angular / пакети / форми / src / директиви / ng_model.ts
Ймовірно , це не дуже приємно для розробників AngularJs , як ви могли б використовувати нг-модель всюди в будь-який час до, але , як Angular намагається окремі модулі для використання все , що ви хотіли б, щоб ви хочете використовувати в той час, ngModel в FormsModule прямо зараз .
Крім того, якщо ви використовуєте ReactiveFormsModule, вам також потрібно імпортувати його.
Тому просто шукайте app.module.ts і переконайтеся, що ви FormsModule
імпортували в ...
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms'; //<<<< import it here
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule, FormsModule //<<<< and here
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Також це поточні початкові коментарі для Angular4 ngModel
у FormsModule :
/**
* `ngModel` forces an additional change detection run when its inputs change:
* E.g.:
* ```
* <div>{{myModel.valid}}</div>
* <input [(ngModel)]="myValue" #myModel="ngModel">
* ```
* I.e. `ngModel` can export itself on the element and then be used in the template.
* Normally, this would result in expressions before the `input` that use the exported directive
* to have and old value as they have been
* dirty checked before. As this is a very common case for `ngModel`, we added this second change
* detection run.
*
* Notes:
* - this is just one extra run no matter how many `ngModel` have been changed.
* - this is a general problem when using `exportAs` for directives!
*/
Якщо ви хочете використовувати свій вклад, а не у формі, ви можете використовувати його ngModelOptions
та зробити автономну справжню ...
[ngModelOptions]="{standalone: true}"
Для отримання додаткової інформації Подивіться на ng_model в кутовому розділі тут