小编典典

jQuery会在IE中缓存AJAX请求,即使已设置了“ false”:

ajax

我有以下代码

$.ajax({type: "GET",
  url: "/" + filename,
  dataType: "xml",
  cache: "false",
  success: function(xml)
{
    /* Parsing code here */
}});

在Chrome等中,请求不会被缓存,但是它们在IE中。我是否正确构建了请求?


阅读 262

收藏
2020-07-26

共1个答案

小编典典

cache 应该是布尔值,而不是字符串:

$.ajax({type: "GET",
  url: "/" + filename,
  dataType: "xml",
  cache: false,
  success: function(xml){
    /* Parsing code here */
  }  
});
2020-07-26