Socket.io 不处理 IE 和 Firefox 中的 JSON
使用示例聊天应用程序此处,我编写了一个简单的Socket.IO 应用程序通过 Node.Js 提供服务,Node.Js 使用 fileRead
从服务器端轮询 JSON 文件,并将解析后的 JSON 值广播到客户端,我在客户端显示它们。
这在 Chrome、Safari 和 Opera(所有支持 WebSockets 的浏览器)中效果非常好。
然而在 Firefox 中,它会失败直到我启动 Firebug 控制台。此时会发生握手并显示数据。
在 IE 中,它不起作用。
当我使用 SSL 部署相同的代码时,它在任何地方都可以工作。关于我在这里做错了什么有什么想法吗?编辑:现在它似乎也不适用于 SSL :(
Using the example chat application here, I've written a simple Socket.IO application served over Node.Js which polls a JSON file using a fileRead
from the server side and broadcasts the parsed JSON values over to the client side, where I've displaying them.
This works really well in Chrome, Safari and Opera (all those who support WebSockets).
However in Firefox, it fails until I start the Firebug console. That's when the handshake happens and the data is displayed.
In IE, it just doesn't work.
When I deploy the same code with SSL, it works everywhere. Any ideas on what I'm doing wrong here? EDIT: Now it doesn't seem to work on SSL too :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来这可能是 console.log() 问题。如果您在没有实际打开控制台的情况下调用 console.log() ,Firefox 将挂起。
Sounds like this might be a console.log() problem. Firefox will hang if you call console.log() without actually having a console open.