gpt4 book ai didi

javascript - jquery ajax post 中的 While 循环

转载 作者:行者123 更新时间:2023-12-02 19:28:01 25 4
gpt4 key购买 nike

我想在 ajax .post jquery 函数中设置一个 while 循环。有可能吗?如果没有,是否有替代解决方案来解决该问题。用户输入数据是动态的,并且每个用户的数量都会变化。这是必须的。下面是代码。

$('#send').click(function() {
var rad = 'radius_' + k + ' : ' + 'radius_' + k + ', ';
var add = 'address_' + k + ' : ' + 'address_' + k + ', ';
var latit = 'latitude_' + k + ' : ' + 'latitude_' + k + ', ';
var longit = 'longitude_' + k + ' : ' + 'longitude_' + k + ', ';

$.post('ajax_set_place.php', {
while (k < f) {
print(rad);
print(add);
print(latit);
print(longit);
var k = k++;
},
user_id: user_id,
number_of_places: number_of_places
},
function(){
$('#message_sent').html('Message Sent!');
}
});

最佳答案

我认为这是不可能的,因为数据参数是一个对象。

您到底想要实现什么目标?

如果您尝试继续将用户数据发布到文件中,我会使用

// while loop here

function doPost(){
$.post(url, {dynamic: dynamicdata});
}
setInterval(doPost(), 100);

...并在外部使用 while 循环来动态更新参数。如果不。我不确定您想通过替代方案实现什么目标。我希望这个答案能在某种程度上有所帮助。

哦,还有一件事,您可以通过执行类似的操作来自定义数据内容

var data = {name: dynamic};  // could insert while loop to edit what date is equal to. 
$.post('', data);

关于javascript - jquery ajax post 中的 While 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11819491/

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