IE7 中的 Socket.io Node.js 错误 - 访问被拒绝

发布于 2024-10-19 22:30:57 字数 438 浏览 1 评论 0原文

我正在使用 socket.io 使用以下脚本连接到我的节点服务器:

$socket = new io.Socket(null,{port:8086,rememberTransport:false});  
$socket.connect();

如果在 IE8/9、Chrome、Safari 和 IE8/9、Chrome、Safari 中工作正常; FF。

当我在 IE7 中尝试时,建立了连接,但随后弹出以下错误:

An error has occured in the script on this page.
Error: Access denied.

客户端随后与节点服务器断开连接。

我正在运行node.js V0.4.1。

有人有什么想法吗?

谢谢。

I am using socket.io to connect to my node server using the following script:

$socket = new io.Socket(null,{port:8086,rememberTransport:false});  
$socket.connect();

If works fine in IE8/9, Chrome, Safari & FF.

When I try it in IE7, a connection is established but then the following error pops up:

An error has occured in the script on this page.
Error: Access denied.

The client is then disconnected from the node server.

I am runnig node.js V0.4.1.

Does any one have any ideas?

Thank you.

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

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

发布评论

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

评论(1

尹雨沫 2024-10-26 22:30:57

这是因为我在 io.connect 中没有 secure:true 语句引起的。它应该是:

 var socket = new io.Socket(null, {port: 443, secure: true, rememberTransport: false});
 socket.connect();

It was caused because I did not have the secure:true statment in the io.connect. It should read:

 var socket = new io.Socket(null, {port: 443, secure: true, rememberTransport: false});
 socket.connect();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文