我正在尝试检测离子中搜索字段的更新。这是HTML代码:
<ion-view title="Buscar Programa" style="background-size: 100% auto;">
<div ng-controller="searchCtrl" title="">
<ion-content>
<label class="item item-input">
<i class="icon ion-search placeholder-icon"></i>
<input type="search" placeholder="Buscar" ng-model="searchEvents" ng-change="onSearchChange()">
</label>
<ion-content>
</div>
这是JS控制器:
myApp.controller('searchCtrl', function ($scope) {
$scope.onSearchChange = function () {
console.log($scope.searchEvents);
};
});
当文本输入发生更改时,该函数会被触发,但日志输出为空。当使用JS警报时,它只是说'未定义'&#39;。我做错了什么?