码迷,mamicode.com
首页 > 其他好文 > 详细

AJAX防止页面缓存

时间:2014-09-01 12:43:43      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:blog   http   strong   ar   数据   art   div   log   sp   

采用AJAX技术的时候 通常我们无刷新页面提交数据后 用同样的url去获取数据的时候会发现是以前的数据~那样就给client端带来假象了~~ 采用以下的方法可以取消缓存

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网页 
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");

在页头输出这样的信息

或者采用 时间取不相同的url

var url = "out_wangzai.asp?time="+ Math.random();

xmlHttp.open("GET", url, false);

AJAX防止页面缓存

标签:blog   http   strong   ar   数据   art   div   log   sp   

原文地址:http://my.oschina.net/zh119893/blog/308646

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!