欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JQUERY的AJAX請求緩存里的數(shù)據(jù)問題處理

 更新時間:2016年02月23日 11:25:39   投稿:hebedich  
這篇文章主要介紹了JQUERY的AJAX請求緩存里的數(shù)據(jù)問題處理的相關(guān)資料,需要的朋友可以參考下
  1. 參數(shù)type由get改成post
  2. 添加參數(shù)cache并設(shè)置成false
  3. 添加時間戳
$.ajax({
  url: 'ios/index',
  cache: false,
  type: 'post',
  data: {
    timestamp: new Date().getTime()
    //params here
  },
  dataType: 'json'
}).done(function (data) {
  //codes here
});

是不是非常的簡單呢,希望小伙伴們能夠喜歡。

相關(guān)文章

最新評論