|
用wex5做的手机app但是后端采用.net c#做的,能ping通.net服务器,用谷歌浏览器直接输入服务器地址也能得到服务器返回的json数据,可是在wex5用ajax访问直接返回error,不进入success回调函数。方法如下:
$.ajax({
url : "http://192.168.1.66:8080/TszApp/AppLogin",
type : "get",
data : "strUserName:" + inputName + "&strPassword:" + inputPwd,
dataType : "json",
success : function(result) {
if (result.success) {
justep.Shell.showPage(require.toUrl('./main.w'));
} else if (result.success == false && result.msg == "unchecked") {
alert("当前用户未审核,请联系管理员审核后再登录!");
} else {
alert("用户名或密码错误");
}
},
error : function() {
alert("登录异常");
}
}); |
|