gpt4 book ai didi

jquery - 使用 jquery $.ajax 递归发送数据会出现堆栈溢出错误

转载 作者:行者123 更新时间:2023-12-01 02:26:04 24 4
gpt4 key购买 nike

为什么当我执行以下操作时会出现“太多递归”错误?

    function sendTheNames() {

alert("start submitting names..");

return function (array) {

var name = $(array.shift()).text();

$.ajax({
url: "test.jsp?name=" + name,
complete: function () {
if (array.length > 0) {
return arguments.callee(array);
}
}
});
};

}

$(document).ready(function () {

var selectedNames = [];
$('ul li input:checked').each(function () {
selectedNames.push($(this).parent());
});

alert("begin");

sendTheNames()(selectedNames);

alert("done");
});

最佳答案

如果您绝对需要异步,单独的调用,至少按照以下方式做一些更简单的递归:

var selectedNames = ['Abe', 'Burt', 'Chris'];

function sendNames() {
var name = selectedNames.shift();

$.ajax({
url: "test.jsp?name=" + name,
complete: function () {
if (selectedNames.length > 0) {
sendNames();
}
}
});
}

sendNames();

关于jquery - 使用 jquery $.ajax 递归发送数据会出现堆栈溢出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2605172/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com