首页 > 编程 > JavaScript > 正文

JQUERY的AJAX请求缓存里的数据问题处理

2019-11-20 10:32:01
字体:
来源:转载
供稿:网友
  1. 参数type由get改成post
  2. 添加参数cache并设置成false
  3. 添加时间戳
$.ajax({  url: 'ios/index',  cache: false,  type: 'post',  data: {    timestamp: new Date().getTime()    //params here  },  dataType: 'json'}).done(function (data) {  //codes here});

是不是非常的简单呢,希望小伙伴们能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表