我有以下代码
$.ajax({type: "GET", url: "/" + filename, dataType: "xml", cache: "false", success: function(xml) { /* Parsing code here */ }});
在Chrome等中,请求不会被缓存,但是它们在IE中。我是否正确构建了请求?
cache 应该是布尔值,而不是字符串:
cache
$.ajax({type: "GET", url: "/" + filename, dataType: "xml", cache: false, success: function(xml){ /* Parsing code here */ } });