ASP.Net MVC Ajax.Beginform 快速单击时给出意想不到的结果
我正在使用 ASP.Net MVC ajax.beginform 来更改面板中的内容,我还使用 javascript 切换页面上的一些其他元素,
如果我在两个选项之间快速单击,则 javascript 会按预期运行,但 ajax 不会始终返回与上次单击的按钮相关的内容。
其他人也遇到过这个问题吗?有任何修复或解决方法吗?
干杯。
标记
I am using ASP.Net MVC ajax.beginform to change the content in a panel, I am also switching some other elements on the page with javascript,
if I click quickly between two of the options the javascript behaves as expected but the ajax does not always return the content related to the last clicked button.
anyone else had this problem and are there any fixes or workarounds?
Cheers.
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是正常的,AJAX 是异步的,这意味着您从服务器接收响应的顺序不能保证与您发送请求的顺序相同。您可能需要对请求进行排队。有一些很好的 jquery 插件,可以让您实现这一目标。但对于 MS Ajax 我表示怀疑。
That's normal, AJAX is asynchronous meaning that the order you would receive responses from the server is not guaranteed to be the same as you send the requests. You might need to queue the requests. There are some good jquery plugins that allow you to achieve this. But with MS Ajax I doubt.