AngularJS 中你可以创建自己的服务,或使用内建服务。
什么是服务?
在 AngularJS 中,服务是一个函数或对象,可在你的 AngularJS 应用中使用。
AngularJS 内建了30 多个服务。
有个$location服务,它可以返回当前页面的 URL 地址。
实例
varapp = angular.module(
'myApp',[]);
app.controller( 'customersCtrl',function($scope,$location) {
$scope.myUrl = $location.absUrl();
});
app.controller( 'customersCtrl',function($scope,$location) {
$scope.myUrl = $location.absUrl();
});
尝试一下 »
注意$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整合 |
是(对低级浏览器优雅降级) | ||
和应用的上下文是否相关 | 否,window.location.path返回"/docroot/actual/path" | 是,$location.path()返回"/actual/path" |
$http 服务
$http是 AngularJS 应用中最常用的服务。 服务向服务器发送请求,应用响应服务器传送过来的数据。
实例
使用$http服务向服务器请求数据:
'myCtrl',$http) {
$http.get( "welcome.htm").then( function(response) {
$scope.myWelcome = response.data;
});
});
$http.get( "welcome.htm").then( function(response) {
$scope.myWelcome = response.data;
});
});
以上是一个非常简单的$http服务实例,更多$http服务应用请查看AngularJS Http 教程。
$timeout 服务
AngularJS$timeout服务对应了 JSwindow.setTimeout函数。
两秒后显示信息:
尝试一下 »
"Hello World!";
$timeout( function() {
$scope.myHeader = "How are you today?";
},2000);
});
$timeout( function() {
$scope.myHeader = "How are you today?";
},2000);
});
尝试一下 »
$interval 服务
AngularJS$interval服务对应了 JSwindow.setInterval函数。
每一秒显示信息:
创建自定义服务
newDate().toLocaleTimeString();
$interval( function() {
$scope.theTime = newDate().toLocaleTimeString();
},17)">1000);
});
$interval( function() {
$scope.theTime = newDate().toLocaleTimeString();
},17)">1000);
});
创建自定义服务
你可以创建访问自定义服务,链接到你的模块中:
创建名为hexafy的访问:
app.service(
'hexafy',0)">function() {
this.myFunc = function(x) {
returnx.toString( 16);
}
});
this.myFunc = function(x) {
returnx.toString( 16);
}
});
要使用访问自定义服务,需要在定义过滤器的时候独立添加:
使用自定义的的服务hexafy将一个数字转换为16进制数:
过滤器中,使用自定义服务
app.controller(
hexafy) {
$scope.hex = hexafy.myFunc( 255);
});
$scope.hex = hexafy.myFunc( 255);
});
过滤器中,使用自定义服务
当你创建了自定义服务,并连接到你的应用上后,你可以在控制器,指令,过滤器或其他服务中使用它。
在过滤器myFormat中使用服务hexafy:
在对象数组中获取值时你可以使用过滤器:
原文地址:http://www.runoob.com/angularjs/angularjs-services.html 原文链接:https://www.f2er.com/angularjs/147948.html
app.filter(
'myFormat',[
'hexafy',0)">function(
hexafy) {
return return hexafy.myFunc(x);
};
}]);
return return hexafy.myFunc(x);
};
}]);
在对象数组中获取值时你可以使用过滤器:
原文地址:http://www.runoob.com/angularjs/angularjs-services.html 原文链接:https://www.f2er.com/angularjs/147948.html