Mootools:发送请求时如何阻止浏览器冻结

发布于 2024-10-16 13:17:13 字数 437 浏览 3 评论 0原文

我正在开发一个应用程序。 在提交表单时,我使用 mootools 中的 Request 类向服务器发送请求。 但是当我单击“提交”按钮时,它会冻结浏览器,直到来自服务器的响应。
ResponseText 被发送到自定义函数responseProcessor() 进行处理。

请求对象就像:

 req = new Request({
    async: true, method: 'post',
    onSuccess: function(html) { responseProcessor(); },
    onFailure: function() { alert('Page Loading Failed ....!!'); },
 });
 req.send({url: "js/jsCode.php"});

我不明白为什么浏览器在请求发生时冻结?

i am developing an application.
On a form submit i am sending a request to server using Request class in mootools.
but when i click on submit button it freezes browser, till the response comes from server.
The ResponseText is sent to a custom function responseProcessor() for processing on it.

The Request Object is like:

 req = new Request({
    async: true, method: 'post',
    onSuccess: function(html) { responseProcessor(); },
    onFailure: function() { alert('Page Loading Failed ....!!'); },
 });
 req.send({url: "js/jsCode.php"});

I cant figure out why browser is freezing while Request takes place?

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

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

发布评论

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

评论(1

濫情▎り 2024-10-23 13:17:13

您的请求是同步的,因此浏览器将冻结,直到请求完成。

设置 async: true 来解决这个问题

your request is synchronous, so the browser will freeze until the request completes.

set async: true to resolve this

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