Socket.io 不处理 IE 和 Firefox 中的 JSON

发布于 2024-10-28 05:47:37 字数 468 浏览 2 评论 0原文

使用示例聊天应用程序此处,我编写了一个简单的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 技术交流群。

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

发布评论

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

评论(1

深海里的那抹蓝 2024-11-04 05:47:37

但是在 Firefox 中,它会失败,直到我
启动 Firebug 控制台。就在那时
握手发生并且数据是
显示。

听起来这可能是 console.log() 问题。如果您在没有实际打开控制台的情况下调用 console.log() ,Firefox 将挂起。

However in Firefox, it fails until I
start the Firebug console. That's when
the handshake happens and the data is
displayed.

Sounds like this might be a console.log() problem. Firefox will hang if you call console.log() without actually having a console open.

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