我使用这个伪类向服务器发出Ajax请求:
function RequestManager(url, params, success, error){
//Save this Ajax configuration
this._ajaxCall = null;
this._url= url;
this._type = params.type;
this._success = function(){
alert("ok");
};
this._error = function(){
alert("ko");
};
}
RequestManager.prototype = {
require : function(text){
var self = this;
this._ajaxCall = $.ajax({
url: this._url,
type: this._type,
data: text,
success: function(xmlResponse){
var responseArray = [];
var response = _extractElements(xmlResponse, arrayResponse);
self._success(response);
},
error: self._error,
complete : function(xhr, statusText){
alert(xhr.status);
return null;
}
});
}
这是将加载的PHP:
<?php
header('Content-type: text/xml');
//Do something
$done = true;
$response = buildXML($done);
$xmlString = $response->saveXML();
echo $xmlString;
function buildXML ($done){
$response = new SimpleXMLElement("<response></response>");
if($done){
$response->addChild('outcome','ok');
}
else {
$response->addChild('outcome', 'ko');
}
return $response;
}
当我实例化一个新对象,并使用它来加载一个请求时,它总是返回给我错误,状态代码为0.服务器正确生成一个XML文档。为什么我无法获得正确的200代码?
答案 0 :(得分:2)
如果在您第二次调用require
时发生这种情况,那是因为调用abort()
会导致您的回调被调用,状态代码为0.您应该稍后获得第二个的正确结果请求。
在jQuery 1.4中,还有一个错误,即在中止请求后调用success
回调。请参阅my answer to Request periodically coming back empty under race conditions。
与此问题无关,您的代码(timer
和ajaxCall
)中的变量似乎都带有和不带前导下划线的引用。