mui.ajax 在IOS真机上请求,返回结果一直报错是timeout, ip是pc的ip,服务泡仔PC上,使用postman请求正常。
// 请求服务验证
mui.ajax(app.baseUrl + '/u/registerOrLogin', {
data: {
username: username.value,
password: txtPassword.value,
cid: cid
},
dataType: 'JSON', //服务器返回json格式数据
type: 'POST', //HTTP请求类型
timeout: 5000, //超时时间设置为10秒;
headers: {
'Content-Type': 'application/json'
},
success: function(data) {
//服务器返回响应,根据响应结果,分析是否登录成功;
},
error: function(xhr, type, errorThrown) {
//异常处理;
console.log("ajax请求出错")
console.log(type, JSON.stringify(xhr),errorThrown);
}
});
请求地址是对的,
不知道使用HBuilder 真机测试还有哪里需要注意的事项,
目前子啊HBuilder上只知道使用console.log调试,对ajax调试不太友好,刚开始接触HBuilder, 有其他调试方法的希望告知一下,谢谢!!