var app = angular.module(‘myApp‘, []);
app.controller(‘myCtrl‘, function($scope) {
});
app.filter(‘myfilter‘, function() { //可以注入依赖
return function(text) {
var newArguments= Array.prototype.slice.call(arguments);
return text+newArguments.join(‘,‘);
}
});