标签: javascript socket.io
我正在使用socket 2.0进行聊天,我想将服务器端的消息发送到我存储在数组中的某个套接字ID。我怎么能这样做,我在socket.io docs中没有清楚地看到它。
答案 0 :(得分:1)
来自:https://socket.io/docs/emit-cheatsheet/
// sending to individual socketid (private message) socket.to(<socketid>).emit('hey', 'I just met you');