Send response to all clients except sender

前端 未结 10 1677
囚心锁ツ
囚心锁ツ 2020-11-22 14:26

To send something to all clients, you use:

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

To receive from clients, you use:

socket.on         


        
10条回答
  •  感动是毒
    2020-11-22 15:26

    From the @LearnRPG answer but with 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');
    

    To answer @Crashalot comment, socketid comes from:

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

提交回复
热议问题