ส่งคำตอบไปยังลูกค้าทั้งหมดยกเว้นผู้ส่ง


226

ในการส่งบางสิ่งไปยังไคลเอนต์ทั้งหมดคุณใช้:

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

ในการรับจากลูกค้าคุณใช้:

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

ฉันจะรวมสองวิธีเพื่อให้ได้รับข้อความบนเซิร์ฟเวอร์จากไคลเอนต์ฉันจะส่งข้อความนั้นไปยังผู้ใช้ทั้งหมดยกเว้นที่ส่งข้อความได้อย่างไร

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

ฉันต้องแฮ็คมันโดยส่งรหัสลูกค้าพร้อมข้อความจากนั้นตรวจสอบลูกค้าฝั่งหรือมีวิธีที่ง่ายกว่า?

คำตอบ:


840

นี่คือรายการของฉัน(อัพเดทเป็น 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) => {});

14
คุณต้องการมีส่วนร่วมในคำถามที่พบบ่อยนี้หรือไม่ หรือฉันจะทำเพื่อคุณ (ฉันจะให้ลิงก์ย้อนกลับที่นี่)
Kos

1
ฉันไม่มี 'ที่ioนี่เท่านั้นsocket
chovy

2
นอกจาก// sending to all clients except senderจะใช้กับ// sending a response to sender client only อะไรดี?
Basj

4
คุณกรุณาเพิ่มสิ่งนั้นตามซ็อกเก็ต # ในได้socket.to('others').emit('an event', { some: 'data' });เช่นกันถ่ายทอดในห้อง
gongzhitaao

119
สิ่งนี้มีประโยชน์มากกว่าทุกอย่างใน socket.io docs รวมกัน
Jonathan

43

จากคำตอบ @LearnRPG แต่ใช้กับ 1.0:

 // 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 socketidมาจาก:

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

3
! น่ากลัว คุณจะsocketidส่งไปยังซ็อกเก็ตได้อย่างไร?
Crashalot

2
แก้ไขด้วยคำตอบสำหรับคำถามของคุณ โดยทั่วไปมันsocket.idมาจากวัตถุซ็อกเก็ตของคุณ
Soyuka

สำหรับการส่งไปยังบุคคลคุณสามารถใช้ socket.emit กลับใครส่งหรือคุณสามารถจัดกลุ่มไคลเอนต์ conncected และทำ @Crashalot
ujwal dhakal

12

นี่คือคำตอบที่สมบูรณ์ยิ่งขึ้นเกี่ยวกับสิ่งที่เปลี่ยนจาก 0.9.x เป็น 1.x

 // 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 แต่การแก้ไขของฉันถูกปฏิเสธโดยผู้ตรวจทาน


6

Broadcast.emit ส่งข้อความ msg ไปยังไคลเอนต์อื่น ๆ ทั้งหมด (ยกเว้นผู้ส่ง)

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

6

ปล่อย cheatsheet

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

สำหรับเนมสเปซภายในห้องที่วนลูปรายชื่อลูกค้าในห้อง (คล้ายกับคำตอบของ Nav) เป็นหนึ่งในสองวิธีที่ฉันได้พบซึ่งจะใช้งานได้ อื่น ๆ คือการใช้ไม่รวม เช่น

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

7
ยกเว้นถูกลบออกจาก 1.x: /
coulix

1

กรณีอื่น ๆ

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

1

อัพเดทรายการสำหรับเอกสารเพิ่มเติม

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.

หวังว่านี่จะช่วยได้


'io.sockets.emit' เหมือนกับ 'io.emit' ไม่ใช่ 'socket.emit'
Doctor.Who

'socket.to (' game '). emit' เท่ากับ 'socket.broadcast.to (' game '). emit' ดังนั้นความคิดเห็นด้านบนจึงผิด
Doctor.Who

0

ใช้การเข้ารหัสนี้

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

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

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

socket.broadcast.emit นี้ () จะปล่อยทุกอย่างในฟังก์ชั่นยกเว้นไปยังเซิร์ฟเวอร์ที่มีการเปล่ง


1
คุณจะได้รับioภายในนี้ถ้าโทรกลับถูกกำหนดไว้ในไฟล์อับละอองเกสร
chovy

ฉันมีแอพของฉันในหลายไฟล์และฉันเชื่อมต่อพวกเขากับ PrePros หรือ Koala แทนที่จะต้องการพวกมันช่วยให้ฉันสามารถแชร์ตัวแปรทั้งหมดของพวกเขาได้
Steel Brain

1
หรือมีioทั่วโลก
Vadorequest

0

ฉันกำลังใช้เนมสเปซและห้องพัก - ฉันพบ

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

ไปทำงานที่ไหน

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

ไม่ได้

(ทุกคนควรประสบปัญหานี้)

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.