Socket IO V0.7:如何向多个特定客户端发送消息
在 0.6 版本中,我使用此方法向特定的客户端组发送消息。它将排除会话 ID 在“excludedClients”数组中的客户端,并将其发送给所有未排除的客户端。
var excludedClients = [sessionID1, sessionID2, sessionID3];
io.broadcast(msg, excludedClients);
- 这个方法在V0.7中仍然适用吗?
- 这是最好的方法吗?
希望有人能帮我解决这个问题,似乎没有任何地方的 Socket IO 可靠文档,仅在 github 页面上简要解释了示例。
In version 0.6 I used this method to send a message to specific group of clients. It will exclude the clients with the session IDs in the 'excludedClients' array and send to all clients who are not excluded.
var excludedClients = [sessionID1, sessionID2, sessionID3];
io.broadcast(msg, excludedClients);
- Is this method still applicable in V0.7?
- Is this the best way of doing this?
Hope someone can give me a hand with this, there doesn't seem to be any solid documentation for Socket IO anywhere, only briefly explained examples on the github page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信是这样;查看有关 0.6 到 0.7 迁移的 wiki 页面 .
如果您的客户可以按逻辑分组,您就可以使用房间。
I believe so; check out the wiki page on 0.6 to 0.7 migration.
If your clients can be grouped logically, you can use rooms.