网络请求一直报错net::ERR_CONNECTION_RESET
function getTimeMap(urlType,param,success,fail)
{
let urlStr = Domain + urlType ;
wx.request({
url: urlStr,
data:param,
method:‘GET’,
header:
{
‘Content-Type’: ‘application/json’
},
success:function(res)
{
console.log(res)
if(res.statusCode == 200)
{
}
},
fail:function(res)
{
}
})
}
paw、浏览器、APP请求都没问题,微信开发工具一直报错,改代理也没用。域名设置好了的