本文介绍了将消息发送到Socket.IO 1.0中的特定ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将数据发送到一个特定的套接字ID.
I want to sent data to one specific socket ID.
过去,我们可以在较早的版本中执行此操作:
We used to be able to do this in the older versions:
io.sockets.socket(socketid).emit('message', 'for your eyes only');
我该如何在Socket.IO 1.0中做类似的事情?
How would I go about doing something similar in Socket.IO 1.0?
推荐答案
在socket.io 1.0中,它们为此提供了一种更好的方法.每个套接字通过自身ID自动加入默认房间.检查文件: http://socket.io/docs/rooms-and-namespaces/#default-room
In socket.io 1.0 they provide a better way for this. Each socket automatically joins a default room by self id. Check documents: http://socket.io/docs/rooms-and-namespaces/#default-room
因此,您可以使用以下代码通过id向套接字发出消息:
So you can emit to a socket by id with following code:
io.to(socketid).emit('message', 'for your eyes only');
这篇关于将消息发送到Socket.IO 1.0中的特定ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!