浅析IE针对Ajax请求结果的缓存问题
在默认情况下,ie会针对请求地址缓存ajax请求的结果。换句话说,在缓存过期之前,针对相同地址发起的多个ajax请求,只有第一次会真正发送到服务端。在某些情况下,这种默认的缓存机制并不是我们希望的(比如获取实时数据),这篇文章就来简单地讨论这个问题,以及介绍几种解决方案。
目录
一、问题重现
二、通过为url地址添加后缀的方式解决问题
三、通过jquery的ajax设置解决问题
四、通过定制响应解决问题
一、问题重现
我们通过一个asp.net mvc应用来重现ie针对ajax请求结果的缓存。在一个空asp.net mvc应用中我们定义了如下一个默认的homecontroller,其中包含一个返回当前时间的action方法getcurrenttime。
public class homecontroller controller { public actionresult index() { return view(); } public string getcurrenttime() { return datetime.now.tolongtimestring(); } }
默认action方法index对应的view定义如下。我们每隔5秒钟利用jquery的方法以ajax的方式调用getcurrenttime操作,并将返回的结果显示出来。
<!doctype html> <html> <head> <title>@viewbag.title</title> <script type="text/javascript" src="@url.coutent(“~/scripts/jquery-...min.js”)"></script> <script type="text/javascript"> $(function () { window.setinterval(function () { $.ajax({ url'@url.action("getcurrenttime")', success function (result) { $("ul").append("<li>" + result + "</li>"); } }); }, ); }); </script> </head> <body> <ul></ul> </body> </html>
采用不同的浏览器运行该程序会得到不同的输出结果,如下图所示,chrome浏览器中能够显示出实时时间,但是在ie中显示的时间都是相同的。
二、通过为url地址添加后缀的方式解决问题
由于ie针对ajax请求的返回的结果是根据请求地址进行缓存的,所以如果不希望这个缓存机制生效,我们可以在每次请求时为请求地址添加不同的后缀来解决这个问题。针对这个例子,我们通过如下的代码为请求地址添加一个基于当前时间的查询字符串,再次运行程序后ie中将会显示实时的时间。
<!doctype html> <html> <head> <script type="text/javascript"> $(function () { window.setinterval(function () { $.ajax({ url'@url.action("getcurrenttime")?'+ new date().totimestring() , success function (result) { $("ul").append("<li>" + result + "</li>"); } }); }, ); }); </script> </head> </html>
三、通过jquery的ajax设置解决问题
实际上jquery具有针对这个的ajax设置,我们只需要按照如下的方式调用$.ajaxsetup方法禁止掉ajaz的缓存机制。
<!doctype html> <html> <head> <script type="text/javascript"> $(function () { $.ajaxsetup({ cache false }); window.setinterval(function () { $.ajax({ url'@url.action("getcurrenttime")', success function (result) { $("ul").append("<li>" + result + "</li>"); } }); }, ); }); </script> </head> </html>
实际上jquery的这个机制也是通过为请求地址添加不同的查询字符串后缀来实现的,这可以通过fiddler拦截的请求来证实。
四、通过定制响应解决问题
我们可以通过请求的响应来控制浏览器针对结果的缓存,为此我们定义了如下一个名为nocacheattribute的actionfilter。在实现的onactionexecuted方法中,我们调用当前httpresponse的setcacheability方法将缓存选项设置为nocache。该nocacheattribute特性被应用到getcurrenttime方法后,运行我们的程序在ie中依然可以得到实时的时间。
public class homecontroller controller { public actionresult index() { return view(); } [nocache] public string getcurrenttime() { return datetime.now.tolongtimestring(); } } public class nocacheattribute filterattribute, iactionfilter { public void onactionexecuted(actionexecutedcontext filtercontext) { filtercontext.httpcontext.response.cache.setcacheability(httpcacheability.nocache); } public void onactionexecuting(actionexecutingcontext filtercontext) {} }
实际nocacheattribute特性最终控制消息消息的cache-control报头,并将其设置为“no-cache”,指示浏览器不要对结果进行缓存。如下所示的是针对getcurrenttime请求的响应消息:
http/. ok server asp.net development server/... date thu, jan gmt x-aspnet-version .. x-aspnetmvc-version . cache-control no-cache pragma no-cache expires - content-type text/html; charset=utf- content-length connection close pm
上一篇: 各种AJAX方法的使用比较详解