Prevent Internet Explorer from caching http calls

Posted By : Kamaldeep Singh | 30-Sep-2015

In this blog, I will let you know how to prevent Internet Explorer browser to cache ajax http calls.

Recently I met with a problem in which I was not able to get the updated data from server in IE. This case was generated on second time call. Having the same parameters, the server gives response to the first $http call but denies further $http calls on same URL with same parameter. As IE used to cache the values of first call made. Yes there could be case where you actually get the same response via requesting the same request parameter but if your API is returning different values on same API with the same parameter then this is gonna be prevented in Internet Explorer. So to prevent this, add the following lines of code in your angular configuration block as :
var mainApp = angular.module('mainApp', ['config']);

mainApp.config(['$httpProvider'function( $httpProvider) {
    if (!$httpProvider.defaults.headers.get) {
        $httpProvider.defaults.headers.get = {};
    }
    $httpProvider.defaults.headers.get['If-Modified-Since'] = 'Mon, 26 Jul 1997 05:00:00 GMT';
    $httpProvider.defaults.headers.get['Cache-Control'] = 'no-cache';
    $httpProvider.defaults.headers.get['Pragma'] = 'no-cache';
}]);

  

Hope this thing helps you.

THANKS

About Author

Author Image
Kamaldeep Singh

Kamaldeep is a highly skilled Backend Developer specializing in Java, specifically the Spring framework. He also has extensive knowledge of Javascript and associated frameworks such as Node.js and Express. He possesses a deep understanding of the latest technologies and has hands-on experience with Core Java, Spring Boot, Hibernate, Apache Kafka messaging queue, Redis, as well as both relational databases like MySQL and PostgreSQL and non-relational databases like MongoDB. He has made significant contributions to various projects, including Viral Nation, ExamWorks, TNIBRO, Biogas engineering, SecureNow - Web Application, FB Messenger Chatbot, Dialogflow Chatbot, and Catalyst. Kamaldeep's expertise allows him to seamlessly integrate different technologies into applications, highlighting his adaptability and innovative mindset. His practical experience and strong technical skills make him an invaluable asset to any team.

Request for Proposal

Name is required

Comment is required

Sending message..