socket.io client not receiving messages from server

后端 未结 2 2030
不思量自难忘°
不思量自难忘° 2020-12-14 06:23

I\'m trying to implement a system with two clients one of them sends a message and the other one shall receive it. The figure below will explain it in a more visual way:

2条回答
  •  执笔经年
    2020-12-14 07:00

    Another aspect which you could take into consideration is the use of :

    socket.broadcast.emit('push', { hello: 'world' });

    Which would essentially send the message to all the connected clients except the one that originated the message. Removing the task of filtering clients/reducing unnecessary traffic to the originating socket.

    Socket.IO on GitHub - Under broadcasting.

提交回复
热议问题