ie下jquery.getJSON的缓存问题的处理方法_jquery
程序员文章站
2022-04-28 08:05:35
...
在项目中遇到一个问题,在火狐下,$.getJSON();请求数据一切正常,但是在IE下面,$.getJSON();只请求一次数据,第二次根本就不发送请求了,用fiddler抓取了才知道,第二次没有发送请求,改成了post就正常了
$.getJSON("/Member/GetExercise.html", { id: $("#Wareid").val(), isBool: loop, random:
Math.random() }, function (data) });
$.getJSON("/Member/GetExercise.html?random=Math.random", { id: $("#Wareid").val(),
isBool: loop,}, function (data) });
?random=new Date().getTime()
$.ajax({
type:"GET",
url:'/Member/GetExercise.html',
cache:false,
dataType:"json",
success:function (data){
alert(data);
}
});
$.getJSON()存在缓存问题,如果其调用的url之前曾经调用过的话,回调函数就会直接在缓存里取得想要得值,而不是进入到后台
解决方法如下:
1、让每次调用的URL都不一样。
方法:在参数中加一个随机数
复制代码 代码如下:
$.getJSON("/Member/GetExercise.html", { id: $("#Wareid").val(), isBool: loop, random:
Math.random() }, function (data) });
复制代码 代码如下:
$.getJSON("/Member/GetExercise.html?random=Math.random", { id: $("#Wareid").val(),
isBool: loop,}, function (data) });
用new Date()也可以算是随机的URL
复制代码 代码如下:
?random=new Date().getTime()
2、将cache设为false
复制代码 代码如下:
$.ajax({
type:"GET",
url:'/Member/GetExercise.html',
cache:false,
dataType:"json",
success:function (data){
alert(data);
}
});
上一篇: css选择器
推荐阅读
-
IE9下Ajax无法刷新数据的缓存问题解决方法
-
JQuery中Ajax的Post提交在IE下中文乱码的解决方法
-
PHP关于IE下的iframe跨域导致session丢失问题解决方法
-
jquery开发中缓存问题的几个解决方法
-
IE8下Jquery获取select选中的值post到后台报错问题
-
Jquery $.getJSON 在IE下的缓存问题解决方法
-
使用jQuery解决IE与FireFox下createElement方法的差异
-
AngularJS在IE下取数据总是缓存问题的解决方法
-
jQuery中ajax的使用与缓存问题的解决方法
-
IE8下CSS3选择器nth-child() 不兼容问题的解决方法