我主要使用ng-change,但这次ng-change不会触发它还有ng-model,它也在我的应用程序和控制器中。我在其他ng-change中使用的语法相同。我有3天的调试时间,但我仍然无法找到解决方案。
这是输入:
PATH
这是控制器:
<input type="text" class="form-control" ng-change="search()" ng-model="count_time">
答案 0 :(得分:0)
在控制器中使用观察者功能
<input type="text" class="form-control" ng-model="count_time">
JS:
$scope.$watch('count_time', function() {
$scope.search();
});