Rumah  >  Artikel  >  pembangunan bahagian belakang  >  javascript - wx.request请求结果如何强制不使用缓存?

javascript - wx.request请求结果如何强制不使用缓存?

WBOY
WBOYasal
2016-10-10 11:56:111323semak imbas

<code> wx.request({
  url: 'wxapp.php',
  data: {
     x: '12' ,
     y: '34'
  },
  header: {
      'Content-Type': 'application/json'
  },
  success: function(res) {
    console.log(res.data)
  }
})
</code>

php:

<code><?php $x=$_GET['x'];
$y=$_GET['y'];
$z=['x'=>$x,'y'=>$y];
echo json_encode($z);</code>

<code>      data: {
         x: '12' ,
         y: '34'
      }</code>

返回

<code>1234</code>

<code>      data: {
         x: '123' ,
         y: '343'
      }</code>

返回

<code>Object {x: "123", y: "343"}</code>

再次修改

<code>      data: {
         x: '12' ,
         y: '34'
      }</code>

编译,清空缓存,重启
返回

<code>1234</code>

这是怎么一种情况?

回复内容:

<code> wx.request({
  url: 'wxapp.php',
  data: {
     x: '12' ,
     y: '34'
  },
  header: {
      'Content-Type': 'application/json'
  },
  success: function(res) {
    console.log(res.data)
  }
})
</code>

php:

<code><?php $x=$_GET['x'];
$y=$_GET['y'];
$z=['x'=>$x,'y'=>$y];
echo json_encode($z);</code>

<code>      data: {
         x: '12' ,
         y: '34'
      }</code>

返回

<code>1234</code>

<code>      data: {
         x: '123' ,
         y: '343'
      }</code>

返回

<code>Object {x: "123", y: "343"}</code>

再次修改

<code>      data: {
         x: '12' ,
         y: '34'
      }</code>

编译,清空缓存,重启
返回

<code>1234</code>

这是怎么一种情况?

<code>wx.request({
  url: 'wxapp.php',
  data: {
     x: '12',
     y: '34',
     _: (new Date()).getTime()  //加个随机参数
  },
  header: {
      'Content-Type': 'application/json'
  },
  success: function(res) {
    console.log(res.data)
  }
});</code>
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn