0
で働いていない私のコードは、これは私がアラートのAjaxのPOSTここでPhoneGapの
(xhr.statusを)エラー与えている
$
.ajax({
cache : false,
type : 'POST',//While GET working
async: false,
url : "http://192.168.1.198:9051/something.xml" + "?time=" + Date.now(),
data : {
key : "value"
},
dataType : "xml",
success : function(xml) {
},
error : function(xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(thrownError);
}
});
です。--------アラートの---> 200
(thrownError); ---------->エラー:無効なXML
私は間違って何をしているのですか?