AngularJS Caching Issue With Internet Explorer

Problem Statement

When $http service is used to get the data from the server, Internet Explorer fetches data from the cache if available, instead of fetching the data from the Server. This results in the View not showing the updated data which was intended.

Resolution

To resolve this issue, Module configuration will help us. We can configure http provider to block cache request. Below sample code is not to cache $http.get request.