我有个问题。将这些代码放在我的 jsp 上后,我仍然可以看到我的缓存仍在增加。
<% response.setHeader("Cache-Control", "no-cache"); %>
并在我驻留在同一个 jsp 上的 javascript/jquery 中:
function waitForMsg() {
$.ajax({
type: "GET",
url : contextPath + "/groupChat",
async: true,
cache: false,
success: function (data) {
$("#divChatMessageTable").load(contextPath + "/groupChat/message");
setTimeout(waitForMsg, 1000);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
setTimeout(waitForMsg, 15000);
}
});
if ($("#divChatMessageTable").height() > tableHeight) {
scrollToBottomChat ();
tableHeight = $("#divChatMessageTable").height();
}
}
我已经cache:false
在jquery中设置了。
顺便说一句,我正在使用 Firefox。
请帮忙。