How to enable caching in $http service?
Answer / chaitanya
You can enable caching in $http service by setting configuration property cache to true. When cache is enabled, $http service stores the response from the server in local cache. In this way, next time the response will be served from the cache without sending request to server. $http.get("http://server/myserviceapi",{ cache:true }).sucess(function(){ //TO DO: });
| Is This Answer Correct ? | 1 Yes | 0 No |
How to implement http cache using interceptors in angular 4?
What is the difference between observable and promises?
How to create & call angular 2 services in components?
What is different between angular 2 and angular?
How are performance improvements on the core in Angular 8?
What is angular and why angular?
Explain routeprovider in angularjs?
How will you display different images based on the status being red, amber, or green?
What is singleton pattern? How does angular use it?
Why $scope is used in angularjs?
What is angular js i18n and l10n language translation?
Explain the difference between constructor and ngoninit in angular 6?