美文网首页
angular 过滤器的几种用法

angular 过滤器的几种用法

作者: newway_001 | 来源:发表于2018-11-22 10:22 被阅读0次

自定义过滤器:


<div ng-app="myApp">
在过滤器中使用服务:

<h1>{{255 | myFormat}}</h1>

</div>

<script>
var app = angular.module('myApp', []);
app.filter('myFormat', function() {
    return function(x) {
        return x.toString(16);
    };
});

</script>

自定义服务后,连接到应用上,在过滤器中使用:


相关文章

网友评论

      本文标题:angular 过滤器的几种用法

      本文链接:https://www.haomeiwen.com/subject/dnikqqtx.html