成功回调未运行
本文关键字:运行 回调 成功 | 更新日期: 2023-09-27 18:31:15
谁能告诉我为什么没有调用我在这个jQuery中的成功回调?
$(document).ready(function () {
var queueid = $('#hidqueueid').val();
var queuemax = $('#hidqueuemax').val();
var queuenext = $('#hidqueuenext').val();
var sid = $('#hidsid').val();
var acc = $('#hidacc').val();
var key = getCookie('account_key');
var processNext = function() {
var url = "functions.aspx?sid=" + sid + "&acc=" + acc + "&func=processqueue&id=" + queueid + "&next=" + queuenext + '&key=' + key;
showProgress();
$.post(url, function (data) {
alert(data); // <== never happens :(
var result = $(data).attr('result');
if (result == 'ok') {
queuenext = $(data).attr('next');
if (queuenext > 0) {
$('#hidqueuenext').val(queuenext);
processNext();
} else {
var newurl = 'Data.aspx?sid=' + sid + '&acc=' + acc;
location.href = newurl;
}
}
}, function() {
// error
alert('Oops!');
});
};
var showProgress = function() {
var output = "<div>" + queuenext + " of " + queuemax + "</div>";
$('#divprogress').html(output);
};
processNext();
});
返回结果的 C# 工作正常,如下所示:
string xml = new Queue(sid, acc, queueId).ProcessItem(queueNext, key);
Response.ClearContent();
Response.ContentType = "text/xml";
Response.Write(xml);
System.Web.HttpContext.Current.ApplicationInstance.CompleteRequest();
调试 C# 时 XML 看起来不错
感谢您的任何帮助!欢迎所有建议。
post
有三个初始参数,第一个是地址,第二个是data
,在您的情况下应该是空的,第三个是成功回调。
如果需要失败回调,请使用fail
方法:
$.post('', null, null).fail(function(data) {} );
此外,如果您觉得使用该 XMLRequest 对象更舒服,则可能需要使用complete
方法:
$.post('/do/action', { Id: 120 }, null).fail(function(data) {
// code
}).complete(function(data) {
// code for complete, which is the same as success callback.
});
还有.always()
方法总是被回调,呵呵。等。