試圖通過restwebservice到的base64圖像發送到服務器。問題是我沒有得到logcat的任何錯誤,並沒有打到服務器。服務器網址是正確的。我使用webapp測試了它的工作正常。但在PhoneGap的它的問題發送的base64圖像服務器中的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");
}
}
});
}
您是否嘗試過在瀏覽器或類似的東西紋波再現問題? –
@KevinBoyle我沒有得到任何類型的解析問題..但問題是功能不會成功的狀態。我檢查了日誌貓沒有錯誤 –
你能確認請求到達你的服務器嗎? – Gajotres