XMLHttpRequest 的 Onreadystatechange 回调行为
如果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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您专门使用后台工作人员(它们是浏览器扩展,尚未普遍实现;即您知道您是否使用它们),否则所有内容都将始终在同一线程中运行。这就是 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.