Ionic 2 和其他型号
Ionic 2 and ng-model
我真的觉得自己是一个早期采用者,因为 Google 找不到解决我的问题的方法:)
我以某种方式收到此错误:
Can't bind to 'ng-model' since it isn't a known native property
我在Ionic中没有看到@Component,所以页面是这样配置的:
import {Page, NavController} from 'ionic-framework/ionic';
@Page({
templateUrl: 'app/home/home.html',
directives: [Select]
})
我的模板是这样的:
<ion-input floating-label>
<ion-label>Search text...</ion-label>
<input type="text" [(ng-model)]="searchInput" />
</ion-input>
我正在使用 Ionic 2。
干杯
在Angular 2中,你应该在模板中使用ngModel
,而不是ng-model
。
我真的觉得自己是一个早期采用者,因为 Google 找不到解决我的问题的方法:)
我以某种方式收到此错误:
Can't bind to 'ng-model' since it isn't a known native property
我在Ionic中没有看到@Component,所以页面是这样配置的:
import {Page, NavController} from 'ionic-framework/ionic';
@Page({
templateUrl: 'app/home/home.html',
directives: [Select]
})
我的模板是这样的:
<ion-input floating-label>
<ion-label>Search text...</ion-label>
<input type="text" [(ng-model)]="searchInput" />
</ion-input>
我正在使用 Ionic 2。
干杯
在Angular 2中,你应该在模板中使用ngModel
,而不是ng-model
。