如何使用ajax异步一次发送一个数据 - Jquery

发布于 2025-01-15 02:01:22 字数 110 浏览 0 评论 0原文

我有一个函数可以一次向服务器发送多个 ajax 请求,但我需要将该请求同步转换为一次仅发送一个请求。问题是同步方法只会使页面崩溃,这很糟糕,因为页面有多个动画。如何在不使用同步方法的情况下一次发送一个请求?

where I have a function that sends several ajax requests at a time to the server, but I need to transform this request synchronously into sending only one request at a time. The problem is that the synchronous method simply crashes the page and this is bad since the page has several animations. How can I send one request at a time without using the synchronous method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤千羽 2025-01-22 02:01:22

Web Workers 可以在与 Web 应用程序的主执行线程分开的后台线程中运行脚本操作。这样做的优点是可以在单独的线程中执行繁重的处理,从而允许主(通常是 UI)线程运行而不会被阻塞/减慢。

Web Workers API 可能会有所帮助。您可以将 UI 事件和其他事件分开。 Web Workers API

Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usually the UI) thread to run without being blocked/slowed down.

Web Workers API might be helpful. You can seperate UI events and other things. Web Workers API

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文