使用ajax防止页面缓存的代码

发布时间:2020-06-01编辑:脚本学堂
使用ajax技术时,通常无刷新页面提交数据后,用同样的url去获取数据的时候会发现是以前的数据。

使用ajax技术时,通常无刷新页面提交数据后,用同样的url去获取数据的时候会发现是以前的数据。
使用以下的方法可以取消缓存,感兴趣的朋友可以参考下。

htm网页
 

复制代码 代码如下:
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache,must-revalidate">
<metahttp-equiv="expires"content="wed,26feb199708:21:57gmt">
或<metahttp-equiv="expires"content="0">

asp网页
 

复制代码 代码如下:
<%
response.expires=-1
response.expiresabsolute=now()-1
response.cachecontrol="no-cache"
%>

php网页
 

复制代码 代码如下:
<?php
header("expires:mon,26jul199705:00:00gmt");
header("cache-control:no-cache,must-revalidate");
header("pragma:no-cache");
?>

jsp网页
 

复制代码 代码如下:
response.addHeader("pragma", "no-cache");
response.addHeader("cache-control", "no-cache,must-revalidate");
response.addHeader("expires", "0");