angularjs-过滤器中,使用自定义服务

简介:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<link rel="stylesheet" href="">

</head>

<body>

<div ng-app="myApp">

在过滤器中使用服务

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

</div>

</body>

<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>

<script>

var app = angular.module("myApp",[]);

app.service("hexafy",function(){

this.myFunc = function(x){

return x.toString(16);

}

});

app.filter("myFormat",['hexafy',function(hexafy){

return function(x){

return hexafy.myFunc(x);

}

}]);

</script>

</html>


本文转自  素颜猪  51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1895322
相关文章
|
11月前
angularjs使用过滤器
angularjs使用过滤器
|
Web App开发 JavaScript 前端开发
|
JSON 数据格式
|
自然语言处理 JavaScript 前端开发
|
JSON JavaScript 数据格式