我在Phonegap应用程序上进行ajax调用,该应用程序在浏览器上运行良好。当我构建应用程序并尝试从我的设备 - 我收到内部服务器错误500.任何建议是什么导致它?我在config.xml中添加了白名单插件和
这是我的ajax电话:
$.ajax({
url : 'http://address.com/Services/methodToCall',
type: 'POST',
dataType : "json",
headers: {
'Content-Type':'application/x-www-form-urlencoded'
},
data: {"count":4},
success:function(response) {
$('#test').html('<h1>' + response[0].Title + '</h1>' + '<p>' + response[0].Body + '</p>');
console.log(response);
},
error: function(e) {
alert("error"+ e.status + '|' + e.responseText);
}
});