请求成功之后无法跳转。 在开发工具里面可以跳转。但是到了真机 之后就无法跳转?
wx.request({
url: ‘https://www.wupicheng.com/json.php’,
data: {
‘sql’: ‘sql’
},
method: “GET”,
header: {
‘content-type’: ‘application/x-www-form-urlencoded’
},
success: function (res) {
console.log(res);
wx.navigateTo({
url: ‘/pages/send/send?uuid=1497173488135’
});
}
})
@maq 我要提交数据给php服务器,测试了很多次,
只有 GET + content-type: application/x-www.form-urlencoded 可以接收到数据。
所以只能这个样子了。