angularjs-创建自定义服务

前端之家收集整理的这篇文章主要介绍了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" ng-controller="myCtrl">

<p>255 的16进制是:</p>

<h1>{{hex}}</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.controller("myCtrl",function($scope,hexafy){

$scope.hex = hexafy.myFunc(335);

});

</script>

</html>

猜你在找的Angularjs相关文章