क्या कोई मुझे समझा सकता है कि $q.when
AngularJS में कैसे काम किया जाता है? मैं विश्लेषण करने की कोशिश कर रहा हूं कि $http
यह कैसे काम करता है और यह पाया गया:
var promise = $q.when(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
आगे क्या होगा? यह ऑब्जेक्ट कैसे हल या अस्वीकृत हो जाता है?