我正在尝试使用本地客户端测试一个简单的 socket.io 示例。这是我的代码:
服务器:
var sio = require('socket.io');
var io = sio.listen(8077, {log: false});
io.sockets.on('connection', function (socket) {
console.log('connection detected');
socket.on('hello', function(data){
console.log('hello received: ' + data);
});
});
客户:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="socket.io-client/dist/socket.io.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
var socket = io.connect('http://localhost:8077');
if(socket != undefined){
socket.emit('hello', 'this is a test');
}
</script>
</body>
</html>
如果我把我的客户端放在远程服务器上,它运行得很好,但是如果我尝试从本地运行我的客户端,我的浏览器会给我以下错误:
XMLHttpRequest cannot load http://localhost:8077/socket.io/1/?t=1343494806858.
Origin null is not allowed by Access-Control-Allow-Origin
我知道在 http 服务器中有一个 http 标头可以解决这个问题,但我不知道在套接字上下文中是否有类似的选项。我需要一个本地客户。我不想从额外的 http nodejs 服务器提供客户端代码。