1. ホーム
  2. ジャバスクリプト

[解決済み】送信者以外の全てのクライアントにレスポンスを送信する。

2022-04-01 22:12:59

質問

すべてのクライアントに何かを送信するには、次のようにします。

io.sockets.emit('response', data);

クライアントから受信するために、使用します。

socket.on('cursor', function(data) {
  ...
});

クライアントからサーバーにメッセージを受信したときに、メッセージを送信したユーザー以外のすべてのユーザーにそのメッセージを送信するように、この2つを組み合わせるにはどうすればよいでしょうか。

socket.on('cursor', function(data) {
  io.sockets.emit('response', data);
});

メッセージと一緒にclient-idを送信し、クライアント側でチェックすることでハックする必要があるのか、それとももっと簡単な方法があるのでしょうか?

どのように解決するのですか?

以下は私のリストです。 (1.0用に更新) :

// sending to sender-client only
socket.emit('message', "this is a test");

// sending to all clients, include sender
io.emit('message', "this is a test");

// sending to all clients except sender
socket.broadcast.emit('message', "this is a test");

// sending to all clients in 'game' room(channel) except sender
socket.broadcast.to('game').emit('message', 'nice game');

// sending to all clients in 'game' room(channel), include sender
io.in('game').emit('message', 'cool game');

// sending to sender client, only if they are in 'game' room(channel)
socket.to('game').emit('message', 'enjoy the game');

// sending to all clients in namespace 'myNamespace', include sender
io.of('myNamespace').emit('message', 'gg');

// sending to individual socketid
socket.broadcast.to(socketid).emit('message', 'for your eyes only');

// list socketid
for (var socketid in io.sockets.sockets) {}
 OR
Object.keys(io.sockets.sockets).forEach((socketid) => {});