我正在尝试从在 Chrome(19.0.1048.46) 中工作的 socket.io 主页获取第一个示例,但出现错误:
“XMLHttpRequest 无法加载 http://localhost:8080/socket.io/1/?t=1337156198176。Access-Control-Allow-Origin 不允许 Origin null。”
服务器代码:
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(8080);
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.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
客户端代码:
<script src="socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost:8080');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
这段代码有什么问题?