当一个客户端在Socket.io,Node js中连接时,如何将数据发送到其他客户端?

时间:2017-04-05 18:53:33

标签: javascript node.js websocket socket.io

do {
    start = System.currentTimeMillis();
    line = reader.readLine();
    ... //doing other actions
    } while ((System.currentTimeMillis() - start) < 10*1000);

此处数据将是第二个客户端的用户名,其套接字ID存储在redis服务器中。 这不符合我的情况。我无法在第二个客户端收到发射数据?我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

您尚未使用socket.on来捕获客户端发出的数据。