angular2在双向数据绑定时[(ngModel)]无法使用的问题

前端之家收集整理的这篇文章主要介绍了angular2在双向数据绑定时[(ngModel)]无法使用的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

angular2在双向数据绑定时[(ngModel)]无法使用,出现的错误是:

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

解决办法:

文件app.component.ts 中引入ngModel

具体为:

添加两行代码

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

FormsModule,

位置如下:

原文链接:/angularjs/145819.html

猜你在找的Angularjs相关文章