Czy ktoś może mi wyjaśnić, jak $q.when
działa AngularJS? Próbuję przeanalizować, jak $http
działa i znalazłem to:
var promise = $q.when(config);
A oto obiekt konfiguracyjny z konsoli 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
Co się potem dzieje? Jak ten obiekt zostaje rozwiązany lub odrzucony?