javascript - wx.request请求结果如何强制不使用缓存?
程序员文章站
2024-01-09 13:08:04
...
wx.request({
url: 'wxapp.php',
data: {
x: '12' ,
y: '34'
},
header: {
'Content-Type': 'application/json'
},
success: function(res) {
console.log(res.data)
}
})
php:
$x,'y'=>$y];
echo json_encode($z);
当
data: {
x: '12' ,
y: '34'
}
返回
1234
当
data: {
x: '123' ,
y: '343'
}
返回
Object {x: "123", y: "343"}
再次修改
data: {
x: '12' ,
y: '34'
}
编译,清空缓存,重启
返回
1234
这是怎么一种情况?
回复内容:
wx.request({
url: 'wxapp.php',
data: {
x: '12' ,
y: '34'
},
header: {
'Content-Type': 'application/json'
},
success: function(res) {
console.log(res.data)
}
})
php:
$x,'y'=>$y];
echo json_encode($z);
当
data: {
x: '12' ,
y: '34'
}
返回
1234
当
data: {
x: '123' ,
y: '343'
}
返回
Object {x: "123", y: "343"}
再次修改
data: {
x: '12' ,
y: '34'
}
编译,清空缓存,重启
返回
1234
这是怎么一种情况?
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)
}
});