我想将数据发送到一个特定的套接字ID。
我们以前能够在旧版本中执行此操作:
io.sockets.socket(socketid).emit('message', 'for your eyes only');
我如何在Socket.IO 1.0中做类似的事情?
答案 0 :(得分:192)
在socket.io 1.0中,它们为此提供了更好的方法。每个套接字通过自身ID自动加入默认房间。检查文件:http://socket.io/docs/rooms-and-namespaces/#default-room
因此您可以使用以下代码通过id发出一个套接字:
io.to(socketid).emit('message', 'for your eyes only');
答案 1 :(得分:92)
在socket.io 1.0中,您可以使用以下代码执行此操作:
if (io.sockets.connected[socketid]) {
io.sockets.connected[socketid].emit('message', 'for your eyes only');
}
<强>更新强>
@MustafaDokumacı的答案包含更好的解决方案。
答案 2 :(得分:16)
@MustafaDokumacı和@Curious已经提供了足够的信息,我正在添加如何获得套接字ID。
要获取套接字ID,请使用 socket.id :
var chat = io.of("/socket").on('connection',onSocketConnected);
function onSocketConnected(socket){
console.log("connected :"+socket.id);
}
答案 3 :(得分:6)
如果您使用了命名空间,我发现以下方法有效:
//Defining the namespace <br>
var nsp = io.of('/my-namespace');
//targeting the message to socket id <br>
nsp.to(socket id of the intended recipient).emit('private message', 'hello');
有关命名空间的更多信息: http://socket.io/docs/rooms-and-namespaces/
答案 4 :(得分:5)
我相信@Curious和@MustafaDokumacı都提供了效果很好的解决方案。不同之处在于,使用@MustafaDokumacı的解决方案,消息被广播到一个房间而不仅仅是特定的客户端。
请求确认时,差异很明显。
io.sockets.connected[socketid].emit('message', 'for your eyes only', function(data) {...});
按预期工作,而
io.to(socketid).emit('message', 'for your eyes only', function(data) {...});
失败
Error: Callbacks are not supported when broadcasting
答案 5 :(得分:1)
- &gt; socket.io - &gt;有一个聊天示例可供下载 将其粘贴在行(io on connection)部分..我使用此代码100%
io.on('connection', function(socket){
socket.on('chat message', function(msg){
console.log(socket.id);
io.to(socket.id).emit('chat message', msg+' you ID is:'+socket.id);
});
});