Socket IO V0.7:如何向多个特定客户端发送消息

发布于 2024-11-29 16:20:42 字数 442 浏览 1 评论 0原文

在 0.6 版本中,我使用此方法向特定的客户端组发送消息。它将排除会话 ID 在“excludedClients”数组中的客户端,并将其发送给所有未排除的客户端。

var excludedClients = [sessionID1, sessionID2, sessionID3];
io.broadcast(msg, excludedClients);
  1. 这个方法在V0.7中仍然适用吗?
  2. 这是最好的方法吗?

希望有人能帮我解决这个问题,似乎没有任何地方的 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);
  1. Is this method still applicable in V0.7?
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以为你会在 2024-12-06 16:20:42
  1. 我相信是这样;查看有关 0.6 到 0.7 迁移的 wiki 页面 .

  2. 如果您的客户可以按逻辑分组,您就可以使用房间。

房间

有时您想在一个房间里放置一堆套接字,并向它们发送消息。您可以通过在套接字上调用join,然后使用标志toin来利用房间:

io.sockets.on('连接', 函数 (套接字) {
  socket.join('一个房间');
  socket.broadcast.to('一个房间').send('我在这里');
  io.sockets.in('其他房间').emit('hi');
});
  1. I believe so; check out the wiki page on 0.6 to 0.7 migration.

  2. If your clients can be grouped logically, you can use rooms.

Rooms

Sometimes you want to put a bunch of sockets in one room, and send a message to them. You can leverage rooms by calling join on a socket, and then with the flags to and in:

io.sockets.on('connection', function (socket) {
  socket.join('a room');
  socket.broadcast.to('a room').send('im here');
  io.sockets.in('some other room').emit('hi');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文