AngularJS 服务 ( Service )

AngularJS 的服务 ( Service ) 是一个函数或对象,可在 AngularJS 应用中使用

AngularJS 允许我们创建自己的服务,或使用内建服务

什么是服务 ?

AngularJS 的服务是一个函数或对象

AngularJS 内建了30 多个服务

比如有个 $location 服务,它可以返回当前页面的 URL 地址

<!DOCTYPE html>
<meta charset="utf-8">
<link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
<script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
    <p>当前网址</p>
    <p>{{ myUrl }}</p>
</div>
<p>该范例使用了内建的 $location 服务获取当前页面的 URL</p>
<footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', 
    function($scope, $location) {
        $scope.myUrl = $location.absUrl();
    }
);
</script>

运行范例 »

$location 服务是作为一个参数传递到 controller 中,如果要使用它,需要在 controller 中定义

为什么使用服务?

在很多服务中,比如 $location 服务,它可以使用 DOM 中存在的对象,类似 window.location 对象,但 window.location 对象在 AngularJS 应用中有一定的局限性

AngularJS 会一直监控应用,处理事件变化

AngularJS 使用 $location 服务比使用 window.location 对象更好

$location vs window.location

/ window.location $location.service
目的 允许对当前浏览器位置进行读写操作 允许对当前浏览器位置进行读写操作
API 暴露一个能被读写的对象 暴露 jQuery 风格的读写器
是否在 AngularJS 应用生命周期中和应用整合 可获取到应用生命周期内的每一个阶段,并且和$watch整合
是否和 HTML5 API 的无缝整合 是(对低级浏览器优雅降级)
和应用的上下文是否相关
window.location.path 返回 "/docroot/actual/path"

$location.path() 返回 "/actual/path"

$http 服务

$http 服务用于向服务器发送请求,应用响应服务器传送过来的数据

<!DOCTYPE html>
<meta charset="utf-8">
<link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
<script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
    <p>slogan</p>
    <h1>{{ myWelcome }}</h1>
</div>
<p> $http 服务向服务器请求信息,返回的值放入变量 "myWelcome" 中。</p>
<footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
    $http.get("/static/tiy/html/angularjs/welcome.html").then(function (response) {
        $scope.myWelcome = response.data;
    });
});
</script>

运行范例 »

上面的范例是一个非常简单的 $http 服务

更多 $http 服务应用请查看 AngularJS Http 教程

$timeout 服务

AngularJS $timeout 服务对应了 JS window.setTimeout 函数

<!DOCTYPE html>
<meta charset="utf-8">
<link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
<script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
</div>
<footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $timeout) {
    $scope.myHeader = "简单教程,简单编程";
    $timeout(function () {
        $scope.myHeader = "How are you today?";
    }, 2000);
});
</script>

运行范例 »

$interval 服务

AngularJS $interval 服务对应了 JS window.setInterval 函数

<!DOCTYPE html>
<meta charset="utf-8">
<link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
<script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
</div>
<footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $interval) {
    $scope.theTime = new Date().toLocaleTimeString();
    $interval(function () {
        $scope.theTime = new Date().toLocaleTimeString();
    }, 1000);
});
</script>

运行范例 »

创建自定义服务

我们可以可以创建自己的服务,然后链接到模块中

下面的代码创建名为 hexafy 的服务

app.service('hexafy', function() {
    this.myFunc = function (x) {        
        return x.toString(16);
    }
});

要使用自定义服务,需要在定义控制器的时候独立添加,设置依赖关系

使用自定义的的服务 hexafy 将一个数字转换为 16 进制数

app.controller('myCtrl', function($scope, hexafy ) {
    $scope.hex = hexafy.myFunc(255);
});

运行范例 »

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

当我们创建了自己的服务,并连接到应用后后

我们就可以在控制器,指令,过滤器或其它服务中使用它

下面的代码在过滤器 myFormat 中使用服务 hexafy

app.filter('myFormat',['hexafy' , function(hexafy)
{
    return function(x) {
        return hexafy.myFunc(x);
    };
}]);

运行范例 »

在对象数组中获取值时可以使用过滤器

<ul><li ng-repeat="x in counts">{{x | myFormat}}</li></ul>

运行范例 »

学习 AngularJS

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.