我对我的服务器使用jQuery.ajax()请求并获取xml响应。由于某些原因,一些用户会收到错误。状态代码是200,但我们继续执行错误处理程序:-(目前我找不到任何一致的模式。对于ex,我可以从我的用户那里得到一个"错误的请求url"并在我的设备上尝试之后 - 它的确有效!所以问题不在于网址。
请求代码:
$.ajax({
url: "myserver.com/oauth.php?token="12345",
// whether this is a POST or GET request
type: "GET",
async: false,
dataType : "xml",
success: function( response ) {
console.log('parsing XML response');
...
return true;
},
error: function( xhr, status ) {
console.log("error status " + status);
},
});