5

所以我有这个非常基本的 socket.io 设置,你可能已经看过一千次了。

请注意这里的文件是通过 apache 提供的。

服务器(app.js)

var io = require('socket.io').listen(8080);

io.sockets.on('connection', function(socket){ 
    socket.emit('server ready', {msg: 'hi'}) ;

    socket.on('random event', function(data) {
        console.log('received');
    })
}); 

客户

$(document).ready(function() {
    var socket = io.connect('http://127.0.0.1:8080/projectname/server/');

    socket.on('server ready', function(data){ 
        console.log('server ready!'); 
    });

    socket.emit('random event', {hurr: 'durr'});
});

但是,我得到的唯一输出是

 debug - websocket writing 5:::{"name":"server ready","args":[{"msg":"hi"}]}

在节点控制台中,在客户端控制台中没有任何内容。这是错误的。

我已经尝试了来自 socket.io 网站的基本示例,它显示了完全相同的行为。它在节点控制台中记录发出的数据,但似乎没有其他任何事情发生。

编辑:经过进一步调查,在 Firefox 中访问该站点会在节点控制台中创建不同的输出:

info  - handshake authorized 178702677759276313
   debug - setting request GET /socket.io/1/xhr-polling/178702677759276313?t=1339080239192
   debug - setting poll timeout
   debug - client authorized for 
   debug - clearing poll timeout
   debug - xhr-polling writing 1::
   debug - set close timeout for client 178702677759276313
   debug - xhr-polling received data packet �17�1::/stock/server/�66�5::/stock/server/:{"name":"random event","args":[{"hurr":"durr"}]}
   debug - setting request GET /socket.io/1/xhr-polling/178702677759276313?t=1339080239263
   debug - setting poll timeout
   debug - clearing poll timeout
   debug - xhr-polling writing 5:::{"name":"server ready","args":[{"msg":"hi"}]}

这看起来就像从客户端发出的数据实际上到达了服务器。但是,它似乎并没有解决实际问题:console.log 行以及客户端和服务器端都没有执行。此输出来自 Firefox 5.0.1,它似乎回退到 xhr。

提前非常感谢!

4

1 回答 1

4

如果你projectnamestock,那是你的问题。Socket.IO 认为您正在使用namespace。您可以在xhr-polling received data packet日志行中看到这一点。console.log永远不会被调用,因为您没有在服务器端侦听该名称空间。

您应该摆脱/projectname/server客户端连接地址并正确引用客户端库,这样您就不会得到 404。这是 Apache 代理问题还是修复script src标题中的问题取决于您当前的设置。我无法从您提供的代码中分辨出来。

PS:Socket.io 应该为客户端库提供服务http://127.0.0.1:8080/socket.io/socket.io.js,但您可能会通过从 Apache 服务器在端口 80 提供的文档中引用该资产来遇到跨域源策略问题。快速修复可能是从您的 apache 服务器,位于socket.io-client模块dist文件夹中。

于 2012-06-07T17:07:01.097 回答