누군가 $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
다음은 어떻게 되나요? 이 객체는 어떻게 해결되거나 거부됩니까?
$ q는
—
프라 미스
@Ajaybeniwal,하지만이 경우에는 콜백이 아닌 객체가 전달되었습니다. 콜백이 아닌 객체가 전달 된 경우 어떻게 해결 / 거부됩니까?
—
SET