这是我的代码
$
.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);
}
});
这给了我错误
对于警报(xhr.status);------------> 200
for alert(thrownError);----------> 错误:无效的 XML
我究竟做错了什么?