how to get socket.id of a connection on client sid

2020-05-16 05:28发布

Im using the following code in index.js

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

the above code lets me print the socket.id in console.

But when i try to print the socket.id on client side using the following code

<script>
var socket = io();
var id = socket.io.engine.id;
document.write(id);
</script>

it gives 'null' as output in the browser.

4条回答
做自己的国王
2楼-- · 2020-05-16 05:59

You should wait for the event connect before accessing the id field:

With this parameter, you will access the sessionID

socket.id

Edit with:

Client-side:

var socketConnection = io.connect();
socketConnection.on('connect', function() {
  const sessionID = socketConnection.socket.sessionid; //
  ...
});

Server-side:

io.sockets.on('connect', function(socket) {
  const sessionID = socket.id;
  ...
});
查看更多
闹够了就滚
3楼-- · 2020-05-16 06:11

For Socket 2.0.4 users

Client Side

 let socket = io.connect('http://localhost:<portNumber>'); 
 console.log(socket.id); // undefined
 socket.on('connect', () => {
    console.log(socket.id); // an alphanumeric id...
 });

Server Side

 const io = require('socket.io')().listen(portNumber);
 io.on('connection', function(socket){
    console.log(socket.id); // same respective alphanumeric id...
 }
查看更多
叼着烟拽天下
4楼-- · 2020-05-16 06:17

To get client side socket id for Latest socket.io 2.0 use the code below

 let socket = io(); 
 //on connect Event 
 socket.on('connect', () => {
     //get the id from socket
     console.log(socket.id);
 });
查看更多
该账号已被封号
5楼-- · 2020-05-16 06:19

The following code gives socket.id on client side.

<script>
  var socket = io();
  socket.on('connect', function(){
var id = socket.io.engine.id;
  alert(id);
})
</script>
查看更多
登录 后发表回答