wx.request失败
通过浏览器直接访问是没问题的(手机试过访问,也没问题),但是通过调用wx.request则出现了问题,请问这是什么原因,代码有问题还是服务端配置没做好
结果失败:Object{errMsg:"request:fail 发生了SSL错误,无法建立与该服务器的安全连接。"}
以下是请求的代码块,
wx.request({
url: 'https://api.naoqiu.com/handler/server.ashx',
data: {
type: 'list'
},
header: {
'content-type': 'application/json'
},
success: function(res) {
console.log(res.data);
},fail:function(res){
console.log(res);
}
})
8 回复