当我尝试保留以下代码以禁用ajax
的缓存时,我收到此错误angularApp.config(['appConfig', '$httpProvider', function (appConfig, $httpProvider) {
if (!$httpProvider.defaults.headers.get) {
$httpProvider.defaults.headers.get = {};
}
//disable IE ajax request caching
$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';
}]);
我在chrome中遇到错误如下:
请求标题字段预检响应中的Access-Control-Allow-Headers不允许使用Pragma。
但是当我删除以下代码时,它的工作正常。
$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';
任何人都能告诉我可能是什么问题吗?
答案 0 :(得分:1)
如果您可以在服务器端配置接受这些标头,那么它没问题。 否则,您应该删除$ httpProvider.defaulsts中设置的标头。 检查以下代码:
var data = {}
var httpCoonfig = {
headers: {'Pragma': undefined, 'Cache-Control': undefined, 'X-Requested-With': undefined, 'If-Modified-Since': undefined}
};
$http.post('https://www.google.com/', data, httpCoonfig).then(function(response){
// console.log(response)
}, function(response){
console.log(response)
});