最佳答案
谁能解释一下在 AngularJS 中 $q.when
是如何工作的?
我试图分析 $http
是如何工作的,发现了这个:
var promise = $q.when(config);
下面是来自 Chrome 控制台的 config 对象:
Object {transformRequest: Array[1], transformResponse: Array[1], cache: Object, method: "GET", url: "/schedule/month_index.html"…}
cache: Object
headers: Object
method: "GET"
transformRequest: Array[1]
transformResponse: Array[1]
url: "/schedule/month_index.html"
__proto__: Object
接下来会发生什么? 这个对象如何被解析或拒绝?