mui.ajax('http://192.168.1.102:8370/learun/adms/user/login', {
data: requestData,
dataType: 'json',//服务器返回json格式数据
type: 'post',//HTTP请求类型
timeout: 10000,
//crossDomain: true,
//processData: false,
//headers: { 'Content-Type': 'application/json' },
success: function (data) {
if (data.code === 200) {
mui.openWindow({
url: 'page/home/home.html',
id: 'home.html'
})
} else {
mui.alert(data.info, '提示', '确认', function () { }, 'div')
}
},
error: function (xhr, type, errorThrown) {
//mui.alert(JSON.stringify(xhr), '提示', '确认', function () { }, 'div')
mui.alert('responseText:' + xhr.responseText + '-statusText:' + xhr.statusText + '-type:' + type, '提示', '确认', function () { }, 'div')
}
});
在pc上用chrom模拟器去调试时没问题的,在手机端就不行了,地址都是对的,手机网络和接口在同一个局域网里面
周磊 (作者)
没有呀 ,不知道什么问题
2018-06-04 16:45
愚者
那咋办,好尴尬,你qq多少
2018-06-04 16:50
miskss
你的手机必须和本地跑项目的电脑在一个局域网内
2018-06-04 17:23
愚者
我不是手机上跑,我是直接跑网页
2018-06-04 17:25