我有一个奇怪的问题。我正在编写一个简单的Socket.IO echo服务器作为测试,但我无法使send()方法起作用。在服务器上我正在使用这段代码:
var io = require('socket.io').listen(3000);
var clients = {};
io.sockets.on('connection', function (socket) {
socket.send('test');
socket.on('addclient', function(id) {
socket.id = id;
clients[id] = socket;
console.log('New client connected: '+ id);
});
socket.on('echomessage', function(message) {
console.log('Sending echo message to client '+ socket.id);
socket.send(message);
});
socket.on('disconnect', function() {
console.log('Client '+ socket.id + ' disconnected');
delete clients[socket.id];
});
});
send('test')工作正常,但是当我发出echomessage事件时,我没有收到消息。在服务器或客户端没有任何错误消息。
所以,在客户端,我这样做:
// Connect with the server (works, connection established)
// works too, I see it on the server
sock.emit('addclient', 1);
// I see 'Sending echo message to client 1' on the server
sock.emit('echomessage', 'Echo this please');
但我根本没有收到这条消息。
我完全不知道我做错了什么。感谢所有帮助!
答案 0 :(得分:1)
我相信你的错误就在这里:
socket.on('addclient', function(id) {
socket.id = id; // <--
clients[id] = socket;
console.log('New client connected: '+ id);
});
不要更改socket.id
,因为它是内部的,您可能会破坏使用套接字的内部过程。
它由socket.io本身定义:source