Gönderen dışındaki tüm istemcilere yanıt gönderin


226

Tüm istemcilere bir şeyler göndermek için şunları kullanırsınız:

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

Müşterilerden almak için şunları kullanırsınız:

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

Bir istemciden sunucuda bir ileti alırken, bu iletiyi iletiyi gönderenin dışındaki tüm kullanıcılara gönderebilmem için ikisini nasıl birleştirebilirim?

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

Istemci kimliği ileti ile gönderip sonra istemci tarafında denetleyerek kesmek zorunda mı yoksa daha kolay bir yolu var mı?

Yanıtlar:


841

İşte listem (1.0 için güncellendi) :

// 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) => {});

14
Buna SSS'ye katkıda bulunmak ister misiniz ? ya da senin için yapabilir miyim? (Burada bir backlink sağlayacağım)
Kos

1
ben burada bir yok. iosadecesocket
chovy

2
Tamamlayıcı olarak // sending to all clients except sender, ne için kullanılır // sending a response to sender client only ?
Basj

4
Bunu soket # in'e göre ekleyebilir misiniz , socket.to('others').emit('an event', { some: 'data' });aynı zamanda bir odada yayın yapar .
gongzhitaao

119
Bu, socket.io docs birleşimindeki her şeyden daha kullanışlıdır
Jonathan.

43

@LearnRPG yanıtından ancak 1.0 ile:

 // send to current request socket client
 socket.emit('message', "this is a test");

 // sending to all clients, include sender
 io.sockets.emit('message', "this is a test"); //still works
 //or
 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
 // docs says "simply use to or in when broadcasting or emitting"
 io.in('game').emit('message', 'cool game');

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

@Crashalot yorumuna cevap vermek socketidiçin:

var io = require('socket.io')(server);
io.on('connection', function(socket) { console.log(socket.id); })

3
Müthiş! socketidBireysel bir sokete nasıl gönderilir?
Crashalot

2
Sorunuza cevap vererek düzenlenmiştir. Temel olarak socket.idsoket nesnenizden.
soyuka

Bireye göndermek için, gönderen socket.emit'i kullanabilir veya bağlı istemcileri gruplandırabilir ve @Crashalot
ujwal dhakal 19:15

12

İşte 0.9.x'ten 1.x'e neyin değiştiğine dair daha eksiksiz bir cevap.

 // send to current request socket client
 socket.emit('message', "this is a test");// Hasn't changed

 // sending to all clients, include sender
 io.sockets.emit('message', "this is a test"); // Old way, still compatible
 io.emit('message', 'this is a test');// New way, works only in 1.x

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

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

 // sending to all clients in 'game' room(channel), include sender
 io.sockets.in('game').emit('message', 'cool game');// Old way, DOES NOT WORK ANYMORE
 io.in('game').emit('message', 'cool game');// New way
 io.to('game').emit('message', 'cool game');// New way, "in" or "to" are the exact same: "And then simply use to or in (they are the same) when broadcasting or emitting:" from http://socket.io/docs/rooms-and-namespaces/

 // sending to individual socketid, socketid is like a room
 io.sockets.socket(socketid).emit('message', 'for your eyes only');// Old way, DOES NOT WORK ANYMORE
 socket.broadcast.to(socketid).emit('message', 'for your eyes only');// New way

@Soyuka'nın gönderisini düzenlemek istedim ama düzenlemem hakem tarafından reddedildi.


6

broadcast.emit msg'yi diğer tüm istemcilere gönderir (gönderen hariç)

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

6

Hileleri yayınla

io.on('connect', onConnect);

function onConnect(socket){

  // sending to the client
  socket.emit('hello', 'can you hear me?', 1, 2, 'abc');

  // sending to all clients except sender
  socket.broadcast.emit('broadcast', 'hello friends!');

  // sending to all clients in 'game' room except sender
  socket.to('game').emit('nice game', "let's play a game");

  // sending to all clients in 'game1' and/or in 'game2' room, except sender
  socket.to('game1').to('game2').emit('nice game', "let's play a game (too)");

  // sending to all clients in 'game' room, including sender
  io.in('game').emit('big-announcement', 'the game will start soon');

  // sending to all clients in namespace 'myNamespace', including sender
  io.of('myNamespace').emit('bigger-announcement', 'the tournament will start soon');

  // sending to individual socketid (private message)
  socket.to(<socketid>).emit('hey', 'I just met you');

  // sending with acknowledgement
  socket.emit('question', 'do you think so?', function (answer) {});

  // sending without compression
  socket.compress(false).emit('uncompressed', "that's rough");

  // sending a message that might be dropped if the client is not ready to receive messages
  socket.volatile.emit('maybe', 'do you really need it?');

  // sending to all clients on this node (when using multiple nodes)
  io.local.emit('hi', 'my lovely babies');

};

4

Odalardaki ad alanları için bir odadaki müşteri listesini (Nav'un ​​cevabına benzer şekilde) döngüye sokmak için işe yarayacağını bulduğum sadece iki yaklaşımdan biri. Diğeri ise dışlama kullanmaktır. ÖRNEĞİN

socket.on('message',function(data) {
    io.of( 'namespace' ).in( data.roomID ).except( socket.id ).emit('message',data);
}

7
hariç 1.x kaldırıldı: /
coulix

1

Diğer durumlar

io.of('/chat').on('connection', function (socket) {
    //sending to all clients in 'room' and you
    io.of('/chat').in('room').emit('message', "data");
};

1

Daha fazla dokümantasyon için liste güncellendi.

socket.emit('message', "this is a test"); //sending to sender-client only
socket.broadcast.emit('message', "this is a test"); //sending to all clients except sender
socket.broadcast.to('game').emit('message', 'nice game'); //sending to all clients in 'game' room(channel) except sender
socket.to('game').emit('message', 'enjoy the game'); //sending to sender client, only if they are in 'game' room(channel)
socket.broadcast.to(socketid).emit('message', 'for your eyes only'); //sending to individual socketid
io.emit('message', "this is a test"); //sending to all clients, include sender
io.in('game').emit('message', 'cool game'); //sending to all clients in 'game' room(channel), include sender
io.of('myNamespace').emit('message', 'gg'); //sending to all clients in namespace 'myNamespace', include sender
socket.emit(); //send to all connected clients
socket.broadcast.emit(); //send to all connected clients except the one that sent the message
socket.on(); //event listener, can be called on client to execute on server
io.sockets.socket(); //for emiting to specific clients
io.sockets.emit(); //send to all connected clients (same as socket.emit)
io.sockets.on() ; //initial connection from a client.

Bu yardımcı olur umarım.


'io.sockets.emit', 'socket.emit' ile değil 'io.emit' ile
aynıdır

'socket.to (' game '). emit' eşittir 'socket.broadcast.to (' game '). emit' yani yukarıdaki yorum yanlıştır
Doctor.Who.

0

bu kodlamayı kullan

io.sockets.on('connection', function (socket) {

    socket.on('mousemove', function (data) {

        socket.broadcast.emit('moving', data);
    });

bu socket.broadcast.emit (), yayan sunucu dışında işlevde her şeyi yayar


1
iogeri arama başka bir dosyada tanımlanmışsa bunun içine nasıl
girersiniz

Uygulamamı birden fazla dosyada var ve bunları yerine PrePros veya Koala ile kapatıyorum, tüm değişkenlerini paylaşmama izin veriyor
Steel Brain

1
Veya ioküresel olarak
Vadorequest

0

İsim alanları ve odalar kullanıyorum - buldum

socket.broadcast.to('room1').emit('event', 'hi');

nerede çalışmak

namespace.broadcast.to('room1').emit('event', 'hi');

yapmadı

(bu problemle karşılaşan başka biri varsa)

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.