gpt4 book ai didi

javascript - 我如何循环ajax请求(使用jquery)和jsp

转载 作者:行者123 更新时间:2023-11-28 13:58:56 25 4
gpt4 key购买 nike

<script>

//when page is ready do the following
$(document).ready(function()
{
//set interval of refresh
setInterval(doAjaxMethod, 1000);

});

function doAjaxMethod(id)
{
$.ajax({
url: "getStatus/"+id,
dataType: "json",
success: function(json)
{
$('#ajaxStatus').html(json.status);
}
});
</script>

<%
//How can I do something like this

int n = object.size();

for(int i=0; i<n; i++)
{
doAjaxMethod(object.getId());
}
%>

<div id=ajaxStatus> status updates here </div>

最佳答案

我不会在 scriplet 中混合调用 javascript。相反,在 javascript 中管理循环。如果您描述更多您想要做的事情,我可以更具体。看来您在 jsp 上有一个可用的容器对象,并且您需要循环以获取容器中内容的状态。与其将该对象传递给 jsp,为什么不创建一个端点,jsp 上的 javascript 可以在 ajax 中调用该端点来获取您需要的所有数据。

关于javascript - 我如何循环ajax请求(使用jquery)和jsp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6469547/

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