码迷,mamicode.com
首页 > Web开发 > 详细

angularJS自定义过滤器

时间:2018-02-02 11:49:01      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:blog   arguments   fun   argument   module   pre   log   slice   filter   

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(‘,‘);
    }
});

angularJS自定义过滤器

标签:blog   arguments   fun   argument   module   pre   log   slice   filter   

原文地址:https://www.cnblogs.com/zhuhb/p/8403462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!