$q服務
q服務是AngularJS中自己封裝實現(xiàn)的一種Promise實現(xiàn)怠益,相對與Kris Kwal's Q要輕量級的多炎码。
先介紹一下$q常用的幾個方法:
defer() 創(chuàng)建一個deferred對象噩凹,這個對象可以執(zhí)行幾個常用的方法枪向,比如resolve,reject,notify等
all() 傳入Promise的數(shù)組,批量執(zhí)行,返回一個promise對象
when() 傳入一個不確定的參數(shù)扎阶,如果符合Promise標準躲胳,就返回一個promise對象。
在Promise中畜眨,定義了三種狀態(tài):等待狀態(tài)昼牛,完成狀態(tài),拒絕狀態(tài)康聂。
關于狀態(tài)有幾個規(guī)定:
1 狀態(tài)的變更是不可逆的
2 等待狀態(tài)可以變成完成或者拒絕
defer()方法
在$q中贰健,可以使用resolve方法,變成完成狀態(tài)恬汁;使用reject方法伶椿,變成拒絕狀態(tài)。
<html ng-app="myApp">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script>
</head>
<body>
<div ng-controller="myctrl">
{{test}}
</div>
<script type="text/javascript">
var myAppModule = angular.module("myApp",[]);
myAppModule.controller("myctrl",["$scope","$q",function($scope, $ q ){
$scope.test = 1;//這個只是用來測試angularjs是否正常的氓侧,沒其他的作用
var defer1 = $q.defer();
var promise1 = defer1.promise;
promise1
.then(function(value){
console.log("in promise1 ---- success");
console.log(value);
},function(value){
console.log("in promise1 ---- error");
console.log(value);
},function(value){
console.log("in promise1 ---- notify");
console.log(value);
})
.catch(function(e){
console.log("in promise1 ---- catch");
console.log(e);
})
.finally(function(value){
console.log('in promise1 ---- finally');
console.log(value);
});
defer1.resolve("hello");
// defer1.reject("sorry,reject");
}]);
</script>
</body>
</html>
其中defer()用于創(chuàng)建一個deferred對象脊另,defer.promise用于返回一個promise對象,來定義then方法约巷。then中有三個參數(shù)偎痛,分別是成功回調(diào)、失敗回調(diào)独郎、狀態(tài)變更回調(diào)踩麦。
all()方法
這個all()方法枚赡,可以把多個primise的數(shù)組合并成一個。當所有的promise執(zhí)行成功后谓谦,會執(zhí)行后面的回調(diào)贫橙。回調(diào)中的參數(shù)反粥,是每個promise執(zhí)行的結果卢肃。
當批量的執(zhí)行某些方法時,就可以使用這個方法才顿。
var funcA = function(){
console.log("funcA");
return "hello,funA";
}
var funcB = function(){
console.log("funcB");
return "hello,funB";
}
$q.all([funcA(),funcB()])
.then(function(result){
console.log(result);
});