$.ajax({
type: 'GET',
url: "string.txt",
cache: false,
success: function(str){
alert("Data is: "+ str);
}
});
在此示例中,string.txt被发送到缓存(\ Temporary Internet Files)
如何确保文件不已发送。我不希望发送副本。
只从服务器读取。 Am I missing an option?
我将缓存设置为false,但这并不会阻止它被发送到客户端。 例如,ajax POST不发送本地副本.....
Here是我想要做的一些背景信息,但是使用jQuery。
我很好奇为什么标准ajax post似乎具有我想要的功能而且无法用jQuery做到这一点?
由于
答案 0 :(得分:2)
或者在服务器端设置无缓存标头。