$http
$http服务是基于$q服务的,提供了promise封装,它接受一个配置对象参数,并返回一个promise对象。同时,它还提供了2个方法用来定义promise回调:success 和 error。
1
|
<span style=
"font-family:'微软雅黑', 'Microsoft YaHei';font-size:16px;"
>$http({method:
"GET"
, url:
"/someUrl"
}).<br> success(
function
(data, status, headers, config){<br>
//当异步请求成功返回响应时触发<br> }).error(function(data, status, headers, config){<br> //当发生异常时触发<br> });<br></span>
|
由于常用的http请求就那么几种,$http服务实现了对应的简便方法,比方说:
$http.get
$http.post
$http.put
$http.delete
$http.head
$http.jsonp
$http为每次请求自动添加了HTTP header,可通过$httpProvider.defaults.headers来配置相关内容。
$httpProvider.defaults.headers.common设置了所有请求都会包含的头信息:
Accept: application/json, text/plain, * / *
x-Requested-With: XMLHttpRequest
$httpProvider.defaults.headers.post设置了POST请求的默认请求头:
Content-Type: application/json
$httpProvider.defaults.headers.put设置了PUT请求的默认请求头:
Content-Type: application/json
现在,我们开始看看$resource,需要注意的是,该服务需要我们手动加载angular-resource.js文件。
$resource服务的核心价值在于:提供给开发者与RESTful风格WebServices交互的更好的用户体验,它封装了较为低级的$http,这样就不需要前端开发者写大量的异步请求代码了。
$resource服务的配置方法
1
|
$resource(url[, paramDefaults][, actions]);
|
url
字符串类型,其中可以出现占位符,占位符要以“:”为前缀,如果系统的域名带端口号的话,需要手动转义:
http://www.codingcool.com:8080/api应该这么传入:
1
|
$resource(
"http://www.codingcool.com\\:8080/api"
);
|
这种情况在ng的1.2.0rc1版本已经不存在了,端口号会被识别而不需要手工转义~~
paramDefaults(可选)
对象类型,用于设置参数的默认值,它设置的数值可以被actions(第三个参数)进行覆盖。如果设置的参数值是函数,那么该函数将在每次获取其值时被执行(有那么点废话的意思)。
对于设置的没有出现在url模板(第一个参数)中的参数,将会以search query的方式添加,例如:
如果url模板为/codingcool/:author,paramDefaults为{author:”kazaff”, profession:”geek”},那么最终的请求url会变成:/codingcool/kazaff?profession=geek
如果参数值是以“@”开头的,那么其真实值将会从数据对象中提取,后面会有例子。
actions(可选)
对象类型,用来定义$resource提供的可以使用方法,声明细节和$http一样。
下面再来看一下$resource的返回值:
返回值的类型是对象,它包含了和指定服务api(即url)进行互动的所有方法,默认会包含如下默认方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
'get'
: {
method:
'GET'
},
'save'
: {
method:
'POST'
},
'query'
: {
method:
'GET'
,
isArray:
true
},
'remove'
: {
method:
'DELETE'
},
'delete'
: {
method:
'DELETE'
}
};
|
这些方法会调用内置的$http服务~
当异步请求成功,数据从服务器端取回后,被封装到一个$resource服务的一个对象实例中,这个对象可以被save,remove,delete方法直接操作,这种封装并提供简单的CRUD操作的方式。
1
2
3
4
5
6
7
8
9
|
var
User = $resource(
'/user/:userId'
, {
userId:
'@id'
});
var
user = User.get({
userId: 123
},
function
() {
user.abc =
true
;
user.$save();
});
|
注意上面代码中的”@id”和”$save()”,使用了@后,当执行$save时,user.id就会被当做userId的值来发送请求。
这种方式封装Ajax,不仅仅使得代码更加优雅,而且还能配合ng的视图渲染:当数据没有返回之前,模板引擎不会渲染,一旦异步数据获取完成,会自动触发模板引擎的渲染机制把数据呈现到视图中。
最后,看一个简单的例子:
AngularJS的$resource
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!DOCTYPE html>
<
html
ng-app
=
"Demo"
>
<
head
>
<
meta
charset
=
utf
-8 />
<
title
>ngResource DEMO</
title
>
</
head
>
<
body
>
<
div
ng-controller
=
"GeekListCtrl"
>
<
ul
>
<
li
ng-repeat
=
"geek in geeks"
>
<
a
href
=
"#"
ng-click
=
"show(`geek`.`id`)"
>`geek`.`name`</
a
>
</
li
>
</
ul
>
<
div
ng-show
=
"user"
>
`user`.`msg`
</
div
>
</
div
>
<
script
src
=
"./src/angular.js"
></
script
>
<
script
src
=
"./src/angular-resource.js"
></
script
>
<
script
type
=
"text/javascript"
>
var Demo = angular.module('Demo', ["ngResource"]).factory('Geek', function($resource) {
return $resource("geek/:geekId.json", {}, {
query: {
method: "GET",
params: {
geekId: "list"
},
isArray: true
}
});
});
function GeekListCtrl($scope, Geek) {
$scope.geeks = Geek.query();
$scope.show = function(id) {
$scope.user = Geek.get({
geekId: id
});
};
}
function GeekDetailCtrl($scope, $routeParams, Geek) {
$scope.geek = Geek.get({
geekId: $routeParams.geekId
}, function(geek) {
console.dir(geek);
});
}
</
script
>
</
body
>
</
html
>
</
span
>
|