錯誤: Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’ 原因: html代碼中出現類似這樣的<input type=“text” [(ngModel)]=“username”>語句,其中使用了[(ngModel)] ...
錯誤:
Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’
原因:
html代碼中出現類似這樣的<input type=“text” [(ngModel)]=“username”>語句,其中使用了[(ngModel)]。
在AngularJS2或以上版本中使用了NgModel指令,必須在app.module.ts文件中導入FormsModule模塊。
解決:
1 . 在app.module.ts文件導入語句中添加import { FormsModule } from ‘@angular/forms’;
2 . 修改app.module.ts文件import[]部分
1 import:[ 2 xxxx, 3 FormsModule, //這個地方必須添加 4 xxxx 5 ]