Get latest ajax request and abort others(获取最新的 ajax 请求并中止其他请求)
问题描述
我一直在寻找,这个问题看起来很简单,但找不到答案.我有多个请求调用不同的 url.但是对于每个 url,我只想要一次结果,并且它必须是被调用的同一个 url 中的最后一个.我现在的问题是如何只获得最后一个?"我看了这个好像3岁了:
I have been searching and this problem seems simple but cannot find answer. I have multiple request calling different url. But for each url, I only want the result once and it must be the last one in the same url being called. My issue now is "how to get the last one only?" I looked at this and it seems to be 3 years old:
http://plugins.jquery.com/project/ajaxqueue
还有其他方法可以很好地干净地做到这一点吗?如果有这样的东西就完美了:
Any other way to do this nicely and cleanly? If there is something like this, it would be perfect:
queue: "getuserprofile",
cancelExisting: true
(getuserprofile队列中现有的ajax将被取消)
(where the existing ajax in getuserprofile queue will be canceled)
谢谢
推荐答案
这个解释 如何使用 jQuery 进行 ajax 调用以及如何中止它.您需要做的就是创建一个存储每个请求的数组.然后,您可以在添加新请求的同时取消之前的请求.
This explains how to use jQuery to do an ajax call and how to abort it. All you need to do is create an array that stores each request. You could then cancel the previous request while adding the new one.
ajaxRequests = new Array();
queueRequest = function() {
if(ajaxRequests[ajaxRequests.length - 1]) {
ajaxRequests[ajaxRequests.length - 1].abort();
}
ajaxRequests[ajaxRequests.length] = //Insert New jQuery AJAX call here.
}
这篇关于获取最新的 ajax 请求并中止其他请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取最新的 ajax 请求并中止其他请求
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01