首页 > Web开发 > 详细

Angular JS 学习 -- 服务Service

时间:2015-11-09 22:35:53      阅读:254      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html>
<script src="http://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
<body>
<title>services</title>

<div ng-app="MyApp" ng-controller="MyController">
{{‘v1:‘+v1+‘ v2:‘+v2}}
</div>
<script type="text/javascript">

angular.module(‘MyApp‘, [])
.service(‘s1‘, function(){

this.compare = function(a, b){
return a === b ? 0 : (a-b) / Math.abs(a-b);
};
})
.factory(‘s2‘, function(){
return {
a: 14,
b: 22
};
})
.provider(‘s3‘, function(){
this.$get = function(){ //$get
return {a:2,b:2};
};
})
.controller(‘MyController‘, function($scope, s1, s2, s3){
$scope.v1 = s1.compare(s2.a, s2.b);
$scope.v2 = s1.compare(s3.a, s3.b);
});
</script>
</body>
</html>

Angular JS 学习 -- 服务Service

原文:http://www.cnblogs.com/w-rudolph/p/4951170.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!