使用jquery同步调用
我可以使用 jQuery AJAX API 进行同步调用吗?
Can I make use of jQuery AJAX API and make a synchronous calls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以使用 jQuery AJAX API 进行同步调用吗?
Can I make use of jQuery AJAX API and make a synchronous calls?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
就像奥巴马会说的:是的,你可以!
jQuery .ajax()
在 .ajax() 处理程序中进行设置
即可解决问题。
Like Obama would say: YES YOU CAN !
jQuery .ajax()
Setting
within the .ajax() handler will do the trick.
虽然 jQuery 可以通过设置synch:false 属性来进行同步 AJAX 调用,但这会导致浏览器挂起,直到 AJAX 完成。使用像 Frame.js 这样的流控制库,您可以在不占用浏览器的情况下进行同步调用:
这一系列的 AJAX 调用将按顺序进行,每个调用都会等待前一个调用完成,而不会导致浏览器挂起。还有一个额外的好处,即数据以可预测的顺序从 ajax 调用返回,而不是以随机顺序返回的异步调用。
While jQuery can make sync AJAX calls by setting the synch:false property, this causes the browser to hang until the AJAX completes. Using a flow control library like Frame.js enables you to make synchronous calls without tying up the browser:
This series of AJAX calls will be made in order, each waiting for the previous to complete, without making the browser hang. Also has the added benefit that the data returns from the ajax calls in a predictable order, as opposed to asynchronous calls which return in a random order.