我有一个 index.html,它带有对 web 服务(ASP.NET)的 ajax 调用,当我将它部署在 bigrock 服务器上时(我有一个域),它可以正常工作。
$.ajax({
type: "POST",
url: "myurl/mywebservice.asmx",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
alert("success");
},
error: function (msg,status) {
$('#demo').html("status is "+status+" . Msg is "+msg.d.responseText);
//attribute for responsetext might be wrong here but in my application it is correct as i am using different system ryt now.
}
});
但是当我使用phonegap的在线拉链从html、css、js、web.config、few类为我的android应用程序制作一个apk并将它安装在我的设备上时......什么都没有出现。它向我显示了一个没有 responseText 的 ajax 错误。
我错过了什么?