ASP.Net MVC Ajax.Beginform 快速单击时给出意想不到的结果

发布于 2024-10-06 18:27:57 字数 207 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

就像说晚安 2024-10-13 18:27:57

这是正常的,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.

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