$q.when
有人可以解释一下AngularJS是如何工作的吗?我正在尝试分析如何$http
工作并发现了这一点:
var promise = $q.when(config);
这是来自 Chrome 控制台的配置对象:
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
接下来发生什么?这个对象如何得到解决或拒绝?