$http的 Angular IE 缓存问题

2022-08-30 00:32:43

从IE发送的所有ajax调用都由Angular缓存,并且我为所有后续调用都获得了一个。尽管请求是相同的,但在我的情况下,响应不会相同。我想禁用此缓存。我尝试将添加到$http.get,但它仍然没有帮助。如何解决此问题?304 responsecache attribute


答案 1

我没有为每个GET请求禁用缓存,而是在$httpProvider全局禁用它:

myModule.config(['$httpProvider', function($httpProvider) {
    //initialize get if not there
    if (!$httpProvider.defaults.headers.get) {
        $httpProvider.defaults.headers.get = {};    
    }    

    // Answer edited to include suggestions from comments
    // because previous version of code introduced browser-related errors

    //disable IE ajax request caching
    $httpProvider.defaults.headers.get['If-Modified-Since'] = 'Mon, 26 Jul 1997 05:00:00 GMT';
    // extra
    $httpProvider.defaults.headers.get['Cache-Control'] = 'no-cache';
    $httpProvider.defaults.headers.get['Pragma'] = 'no-cache';
}]);

答案 2

您可以向请求附加一个唯一的查询字符串(我相信这就是jQuery对缓存:false选项所做的)。

$http({
    url: '...',
    params: { 'foobar': new Date().getTime() }
})

一个更好的解决方案是,如果您有权访问服务器,则可以确保设置必要的标头以防止缓存。如果您正在使用此答案可能会有所帮助。ASP.NET MVC