原因:
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
文件
@NgModule({
imports: [
...
FormsModule //此代码仅为需加入的部分,注意比对你本身的代码,把这个加入其中即可
...
]