2

我正在尝试从在 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>

这段代码有什么问题?

4

1 回答 1

5

我相信你是直接在浏览器中打开index.html文件,是这样吗?

使用file://协议没有为 XMLHttpRequest 设置来源,因此如果服务器未设置启用 CORS的Access-Control-Allow-Origin标头,浏览器将引发该安全异常

改为导航到http://localhost:8080/,代码中指定的处理程序应正确呈现 index.html 页面

于 2012-05-16T09:04:00.867 回答