我有一个节点(0.6.11)/socket.io(0.9.0)应用程序,它在FF中运行良好,但IE8抛出JS异常:
Access is denied
在socket.io.js(2561行)中:
req.open(method || 'GET', this.prepareUrl() + query, true);
在此之前的几行中,req被定义为
req = io.util.request(this.socket.isXDomain())
这表明这是一个跨领域的问题,但我一直在本地进行。此外,FF没有任何问题。
原因可能是什么?
这是源代码:
服务器:
var app = require('express').createServer()
, io = require('socket.io').listen(app);
app.listen(1337);
app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
客户端:
<html>
<head>
</head>
<body>
<div id='contents'>
</div>
<script src="http://localhost:1337/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://127.0.0.1:1337');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
</body>
</html>
我读过关于将安全标志设置为true的文章,这使得异常消失,但随后它突然失败,什么也没做。在FF和IE中。
很抱歉没有人愿意回答你,但问题是你正在进行CORS(跨源资源共享),这意味着你的socket.io服务器运行在与你的Web服务器不同的端口上(我假设是端口80,但你没有明确表示)
IE8和IE9具有非常有限的CORS支持。我不知道IE8支持的解决方案,但这是你的问题。更多详细信息,请点击此处:http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx