, debounced search. , , :
, ng-model
<input ng-model="searchText" ng-model-options="{ debounce: 500 }" type="text" class="form-control" placeholder="Search...">
, ng-model-options = "{debounce: 500}". .
, ng-model-options .
$watch :
$scope.$watch('searchText', function(newValue) {
});
, $watch . , , . "searchText", , .
, ng-model, "searchText", , , ajax ( ).
, .:)