日期:2014-05-16 浏览次数:20631 次
1、在服务端加 header("Cache-Control: no-cache, must-revalidate");(如php中) |
2、在ajax发送请求前加上 anyAjaxObj.setRequestHeader("If-Modified-Since","0"); |
3、在ajax发送请求前加上 anyAjaxObj.setRequestHeader("Cache-Control","no-cache"); |
4、在 Ajax URL 参数后加上 "?fresh=" + Math.random() |
5、在 URL 参数后加上 "?timestamp=" + new Date().getTime().valueOf(); |
6、用POST替代GET:不推荐方法,违法了操作本意 |