Use $httpProvider
to change the default behavior of the $http service.
useApplyAsync([value]);
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 specifed, 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. |
booleanObject | If a value is specified, returns the $httpProvider for chaining. otherwise, returns the current configured value. |
defaults
Object containing default values for all $http requests.
|