手机上网络是好的。直接在Hbulider运行在手机上的。
mui.ajax({
url: 'http://172.16.50.237:8080/ycjt-ggcx/getEventSum.do',
async: true,
dataType: 'JSON',
crossDomain: true, //强制使用5+跨域
type: 'get',
success: function(data) {
// 请求成功
alert("9999")
console.log(datacontent);
},
error: function(xhr, type, errorThrown) {
// 请求失败
alert("请求失败:"+type)
}
});
ypf
可以用plus.XMLHttpRequst试试,我之前ios 在4G情况下也遇到了类似问题,改用plus.XMLHttpRequst解决了,估计mui.ajax封装有问题。
2017-04-13 09:24