我試圖在使用phonegap後運行我的應用程序,但未能通過AJAX代碼部分 它在Ripple模擬器上完美工作,但在我的設備(android 5.0)上安裝ajax調用剛剛失敗(獲得ErrMSG)。 感謝 這是我使用的代碼:使用PhoneGap構建APK後ajax調用失敗
$.ajax({
type: "POST",
url: "LogIn.aspx/UserCheck",
data: "{'UserName':'" + UserName + "','Password':'" + Password + "'}",
contentType: "application/json",
dataType: "json",
success: function (msg) {
if (msg.d == true) {
window.location.href = "Default.aspx";
}
else
alert("please insert correct username and password");
},
error: function (xhr, textStatus, errorThrown) {
alert('Ajax Call Failed');
}
});
您必須使用絕對網址,如http://yourserver.com/LogIn.aspx/UserCheck – jcesarmobile