我正在尝试跨域 socket.io,但我遇到了一个问题:我总是得到XMLHttpRequest cannot load http://handsonwithnodejs.samarthwiz.c9.io/socket.io/1/?t=1358882710333. Origin https://c9.io is not allowed by Access-Control-Allow-Origin
.
服务器代码:
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(process.env.PORT);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
io.set('origins', '*:*');
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
在第 19 行io.set('origins', '*:*');
,我尝试用'*'、'https://c9.io'、'c9.io'、'https://c9.io/ '和 '.' 替换 ' : ',有时我添加类似'c9.io/ '的东西我收到警告'非法来源......'但这只是一个与cloud9相关的问题。
客户端代码:
<html>
<body>
<script src="https://raw.github.com/LearnBoost/socket.io-client/master/dist/socket.io.js"></script>
<script>
var socket = io.connect('http://handsonwithnodejs.samarthwiz.c9.io');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
</body>
</html>
我知道使用 github 来获取我的脚本还不是最好的主意,但我想保持我的代码干净并且错误消息可读('socket.io.min.js' 中的所有内容都在第 2 行)
PS 1. 我知道还有其他类似的线程,但它们并没有解决我的问题。2. 请不要回复'Just host the page on the same server as socket.io' 我需要它是跨域的,这是有原因的。