关于浏览器使用get方法请求数据再次请求有缓存json不再请求
方法:
1 插入时间戳,使每次的请求的参数都不同
var getTimestamp = new Date().getTime();
url = url+”×tamp=”+getTimestamp;
2 插入随机数
var t=Math.random();
url = url+”&t=”+t;
3 请求时在请求头
xmlHttpRequest.setRequestHeader(“cache-control”,”no-cache”);
防止location缓存方法也同样适用。
elem.location.href = a.html+parseInt(Math.random()*1000);
关于get请求的缓存问题
最新推荐文章于 2023-04-26 22:02:14 发布