IOS11.3.1 post请求直接失败
IOS11.3.1系统 微信版本6.6.7 wx.request post,不走成功的回调,直接失败 断点命中 一直在超时函数里面循环 最后请求直接连接超时 失败;
get 请求没有问题;其他机型,系统下面方法没有问题;
let httpPost = function (url,datas,successCb,errCb){ wx.request({ url: url, method: "POST" , header: { "content-type" : "application/x-www-form-urlencoded" }, data: { json: JSON.stringify(datas) }, success: function (res) { if (res.statusCode == 200) { if (res.data.code == 0) { successCb(res.data); } else { errCb(res.data); } } }, fail: function (fail) { }, complete: function (complete) { } }) } |