使用 iframe 进行 ajax 长轮询有什么好处?
使用 iframe 进行 Comet 长轮询有什么好处?为什么不将异步 ajax 请求保留在拉入主页的脚本文件中呢?谢谢。
What are the benefits of using iframes for Comet long polling? Why not just keep an asynchronous ajax request in a script file pulled into the main page? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它使 IE 的可移植性成为可能:
http://softwareas.com/portable-comet-its-the-iframe-愚蠢
此外,有些人将其用作安全功能。在 iFrame 中,您可以将所有内容包含在 JavaScript 闭包中并提高安全性。不过,对于安全性还有更好的想法。
It makes portability to IE possible:
http://softwareas.com/portable-comet-its-the-iframe-stupid
Also, some people use it as a security feature. Within an iFrame you can enclose everything within a JavaScript closure and improve your security. There are better ideas for security though.