我正在使用示例队列中提到的 ajaxQueue,例如 Ajax Calls:
// jQuery on an empty object, we are going to use this as our queue
var ajaxQueue = $({});
$.ajaxQueue = function( ajaxOpts ) {
// Hold the original complete function.
var oldComplete = ajaxOpts.complete;
// Queue our ajax request.
ajaxQueue.queue(function( next ) {
// Create a complete callback to fire the next event in the queue.
ajaxOpts.complete = function() {
// Fire the original complete if it was there.
if ( oldComplete ) {
oldComplete.apply( this, arguments );
}
// Run the next query in the queue.
next();
};
// Run the query.
$.ajax( ajaxOpts );
});
};
我还有一个函数来进行 Ajax 调用并将结果附加到 div(简化):
function ajaxCall() {
$.ajaxQueue({
type: "POST",
url: myURL,
async: true,
cache: false,
success: function( result ) {
$('#divID').append($('<div/>').html($(result).html()).fadeIn(200));
}
});
}
然后在单击事件上,我循环通过 ajax 调用(简化):
$("#btn").on("click", function() {
// ( ??? ) Dequeue the ajaxQueue
$('#divID').html(''); // Clear current results
for(var i=0; i<15; i++) {
ajaxCall();
}
});
问题
如果用户在队列仍在运行时单击链接,则会添加一个新的 ajax 调用队列,从而导致比预期更多的结果。在新循环开始之前,我需要在单击时清除队列。
这是一个jsFiddle 演示。任何建议都非常感谢。