XMLHttpRequest 的 Onreadystatechange 回调行为

发布于 2024-09-04 07:29:56 字数 127 浏览 6 评论 0原文

如果XMLHttpRequest使用异步模式,那么0、1、2状态的onreadystatechange回调是仅在UI线程中调用还是在后台线程中调用?

这种行为在不同的浏览器中是否可能有所不同?

此致, 克沙夫

If XMLHttpRequest is used with asynchronous mode, then are the onreadystatechange callbacks for 0,1,2 states called in UI thread only or in the background thread?

And is it possible that this behaviour could be different in different browsers?

Best Regards,
Keshav

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

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

发布评论

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

评论(1

心不设防 2024-09-11 07:29:56

除非您专门使用后台工作人员(它们是浏览器扩展,尚未普遍实现;即您知道您是否使用它们),否则所有内容都将始终在同一线程中运行。这就是 JavaScript 的工作原理。

当然,某些实现可能会通过在单独的线程中运行 JS 来进行优化,但这对您来说始终是不可见的。

Unless you're specifically using background workers (which are browser extensions and not universally implemented yet; i.e. you'd know if you were using them), everything will always run in the same thread. That's how JavaScript works.

Of course, some implementations might optimize things by running JS in a separate thread, but this will always be invisible to you.

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