1
我從服務器獲取XML文件功能(JQuery的)如何更改請求以避免緩存結果?
function load_config_xml(){
$.ajax({
url: 'config/conf.xml',
dataType: "xml",
success:parse_xml,
error: function(){
alert("Error during loading xml file");
}
});
}
,但它不返回新鮮結果,lighttpd的高速緩存。如何更改請求以避免緩存結果?
可能重複被緩存的響應](http://stackoverflow.com/questions/168963/stop-jquery-load-response-from-being-cached) – redsquare