how to get socket.id of a connection on client side?

后端 未结 4 1505
情歌与酒
情歌与酒 2021-01-31 06:05

Im using the following code in index.js

io.on(\'connection\', function(socket){
console.log(\'a user connected\');
console.log(socket.id);
});

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-31 06:34

    The following code gives socket.id on client side.

    
    

提交回复
热议问题