向socket 2.0中的某个套接字ID发送消息

时间:2018-02-23 16:43:00

标签: javascript socket.io

我正在使用socket 2.0进行聊天,我想将服务器端的消息发送到我存储在数组中的某个套接字ID。我怎么能这样做,我在socket.io docs中没有清楚地看到它。

1 个答案:

答案 0 :(得分:1)

来自:https://socket.io/docs/emit-cheatsheet/

// sending to individual socketid (private message)
  socket.to(<socketid>).emit('hey', 'I just met you');