gpt4 book ai didi

Ajax 调用不应等待响应

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

我在我的经典 asp 应用程序中使用 ajax 调用来执行存储过程。
但我不想等到存储过程运行(存储过程大约需要 5-10 分钟才能完成。)。
Ajax 必须调用存储过程并需要立即返回。
我希望 Ajax 调用不应该等待响应。

这是我的代码片段:

1)  $.ajax({  
type: "POST",
url: "runstoredprocedure.asp",
});
2) setInterval(function(){ jQuery("#list").trigger("reloadGrid"); },10000);

这是我正在使用的两个 ajax 调用。第一个运行大约 5-7 分钟。在第一个完成之前,第二个不会开火。但我立即需要调用第二个 ajax 调用。

谁能帮我解决这个问题。

最佳答案

javascript 作为不同线程的一部分触发请求,并且在您的 ajax 调用之后的任何代码都将立即执行。说了一个关于 JS 异步的误解:

People take for granted that because it’s asynchronous, it’s a thread. They are partially right. There must be a thread created by the browser to keep the javascript running while it makes a request to the server. It’s internal and you don’t have access to that thread. But, the callback function called when the server responds to the ajax request is not in a thread.

I’ll explain clearer. If javascript runs some code that takes 5 seconds to execute and an ajax response arrives at 2 seconds, it will take 3 seconds before it will be executed (before the callback function is called). That’s because javascript itself doesn’t create a thread to execute the ajax response from the server and simply waits that all executions are terminated before starting a new one.

So if you’re running a lot of ajax requests simultaneously, you might get some weird behavior because they will all wait one on another before executing themselves.

最后的陈述与您的事业相关。

博客摘录:http://www.javascriptkata.com/2007/06/04/ajax-and-javascript-dont-use-threads/

有趣的阅读:http://www.javascriptkata.com/2007/06/12/ajax-javascript-and-threads-the-final-truth/

关于Ajax 调用不应等待响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6583708/

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