尝试通过 restwebservice 将 base64 图像发送到服务器。问题是我在 logcat 中没有收到任何错误,并且它没有命中服务器。服务器网址正确。我使用 webapp 测试了服务,它工作正常。但是在phonegap中它的问题
功能测试(){警报(imgByte);
/**imgByte is in base64 format -->pic.src = "data:image/png;base64," + imageURI;
imgByte = pic.src;*/
$.ajax({
type : "POST",
url : IMGURL,
data : {
image : imgByte
},
delay : 3,
dataType : "text",
cache : false,
error : function(xhr, ajaxOptions, thrownError) {
debugger;
},
success : function(response, status, xhr) {
alert("haiSuccess1");
response = xhr.responseText;
var responseArray = JSON.parse(response);
if (responseArray.status == "success") {
alert("haiSuccess");
}
}
});
}