我真的觉得自己是早期采用者,因为Google无法找到解决问题的方法:)
我以某种方式得到了这个错误:
无法绑定到' ng-model'因为它不是一个已知的原生财产
我在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.
干杯