我真的觉得自己是早期采用者,因为 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>
我正在使用离子 2。
干杯