0

这是我的代码

$
.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

我究竟做错了什么?

4

1 回答 1

0

我把它整理出来......我传递了一些错误的 xml 作为请求......

于 2012-04-16T11:36:30.527 回答