我有一个节点(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没有问题。
可能是什么原因?
这是源代码:
SERVER:
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中。
答案 0 :(得分:2)
IE8和IE9对CORS的支持非常有限。我不知道IE8支持的解决方案,但这是你的问题。更多细节可以在这里找到:http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx