When injecting $debounce in my Controller, I am encountering this Error: Unknown provider: $debounceProvider <- $debounce
myControllers.controller('Controller',
['$scope', '$compile', '$rootScope', '$timeout', '$document', '$debounce','promiseTracker',
function ($scope, $compile, $rootScope, $timeout, $document,$debounce, promiseTracker) {
$scope.$watch('newquery', function (newValue, oldValue) {
if (newValue === oldValue) { return; }
$debounce(applyQuery, 350);
});
var applyQuery = function () {
$scope.filter.query = $scope.query;
};
}]);
The native
debounce
syntax is part of the view rather than the controller:since the implementation is:
The source is as follows:
References
angular.js source: ngmodel.js
angular.js Issue #13362: ngOptions is setting select $dirty when options change and selected option is removed
angular.js Issue #14626: ngRepeat breaks when re-created by ngIf under certain circumstances