Adding a filter in angularjs

289 Views Asked by At

I am new with angularjs and I am trying to create a filter that remove spaces from a string.

removeSpaces.js

angular.module('filters.stringUtils', [])
.filter('removeSpaces', [function() {
    return function(string) {
        if (!angular.isString(string)) {
            return string;
        }
        return string.replace(/[\s]/g, '');
    };
}])

home.html

<div ng-controller="ItemController">
<p ng-repeat="item in items">
    <a href="/items/{{ item.item_name | removeSpaces }}">{{ item.item_name }}</a>
</p>

itemcontroller.js

angular.module('myApp').controller('ItemController', [
  '$scope', 'Services', '$http','removeSpaces', function($scope, Services, $http,removeSpaces) {
    $http.defaults.headers.common['Accept'] = 'application/json';
    return $scope.services = Services.query();
  }
]);

I get this error:

Unknown provider: removeSpacesFilterProvider <- removeSpacesFilter
1

There are 1 best solutions below

0
On BEST ANSWER

In your app you have to use the module for you app.

So do this and it should work

angular.module('myApp', ['filters.stringUtils'])