我想在多个ajax调用完成后运行代码。 .each()
循环在所有复选框上调用.update()
,其更改事件运行ajax代码。
我有一组复选框,每个复选框都会在选中时发送ajax请求。顶部的复选框将更新所有子复选框以匹配顶部复选框。
我调用.change()
函数以避免重复代码,因为他们的更改事件已经发送了ajax请求。 on更改代码隐藏子复选框,success函数使复选框再次可见。
我想隐藏父复选框,并且只有在所有孩子都使用多个ajax请求进行更新后才显示它。
<head>
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<script>
$(document).ready(function () {
// Calls change event for all child checkboxes
// I want it to hide this checkbox until all child ajax calls are complete
$('#wrapper').on('change', '.parent-active', function () {
var checkbox = $(this);
checkbox.css('display', 'none').after('<img src="loading.gif"/>');
var data = $('#category-content');
var boxes = data.find('input[type=checkbox]');
boxes.each(function( index, box ){
if($(box).is(':checked') != $(checkbox).is(':checked')){
$(box).prop('checked', $(checkbox).is(':checked')).change();
}
});
checkbox.css('display', 'inline').next().remove();
});
// Hides checkbox, displays loading image, sends ajax, restores checkbox
$('#wrapper').on('change', '.child-active', function () {
var checkbox = $(this);
checkbox.css('display', 'none').after('<img src="loading.gif"/>');
$.ajax({
url: '/',
type: 'post',
complete: function (data) {
checkbox.css('display', 'inline').next().remove();
}
});
});
});
</script>
<div id="wrapper">
<table><tbody>
<tr><td>Parent</td><td><input type="checkbox" class="parent-active" id="parent-active-1"/></td></tr>
</tbody></table>
<div id ="category-content"><table><tbody>
<tr><td>Child 1</td><td><input type="checkbox" class="child-active" id="child-active-1"/></td></tr>
<tr><td>Child 2</td><td><input type="checkbox" class="child-active" id="child-active-2"/></td></tr>
<tr><td>Child 3</td><td><input type="checkbox" class="child-active" id="child-active-3"/></td></tr>
</tbody></table></div>
</div>
问题是父复选框甚至不显示加载图像。 .change()
调用会立即返回,并且父级复选框会在您看到它停用之前恢复。我希望保持父复选框不可用,直到孩子们都完成为止。
我已尝试使用.promise()
和.when()
但尚未找到解决方案。
我如何对多个ajax请求做出反应?
如果您想查看页面的精简版本,请检查http://dl.dropboxusercontent.com/u/4621872/stackoverflow.html
答案 0 :(得分:3)
使用jQuery Deferred,等待一堆AJAX调用完成非常简单,例如:
var deferreds = [];
$sel.each(function() {
deferreds.push(
$.ajax(); // make AJAX call for element $(this)
);
});
$.when.apply($, deferreds).done(function() {
// all AJAX calls have complete
do_something();
});
例如,如果您想预取所有图像
var deferreds = [];
$('img').each(function() {
deferreds.push(
$.ajax($(this).attr('src'));
);
});
$.when.apply($, deferreds).done(function() {
// all images are now prefetched
});