IE7 中的 Socket.io Node.js 错误 - 访问被拒绝
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为我在 io.connect 中没有
secure:true
语句引起的。它应该是:It was caused because I did not have the
secure:true
statment in the io.connect. It should read: