Use $httpProvider
to change the default behavior of the $http service.
Configure $http service to combine processing of multiple http responses received at around the same time via $rootScope.$applyAsync. This can result in significant performance improvement for bigger applications that make many HTTP requests concurrently (common during application bootstrap).
Defaults to false. If no value is specified, returns the current configured value.
Param | Type | Details |
---|---|---|
value (optional) | boolean | If true, when requests are loaded, they will schedule a deferred "apply" on the next tick, giving time for subsequent requests in a roughly ~10ms window to load and share the same digest cycle. |
boolean Object
|
If a value is specified, returns the $httpProvider for chaining. otherwise, returns the current configured value. |
This method will be removed in v1.6.0 along with the legacy promise methods.
Configure $http
service to return promises without the shorthand methods success
and error
. This should be used to make sure that applications work without these methods.
Defaults to true. If no value is specified, returns the current configured value.
Param | Type | Details |
---|---|---|
value (optional) | boolean | If true, |
boolean Object
|
If a value is specified, returns the $httpProvider for chaining. otherwise, returns the current configured value. |
Object containing default values for all $http requests.
|
Array containing service factories for all synchronous or asynchronous $http pre-processing of request or postprocessing of responses. These service factories are ordered by request, i.e. they are applied in the same order as the array, on request, but reverse order, on response. |
© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.5.11/docs/api/ng/provider/$httpProvider