如何在 Socket.IO 上添加 cookie 值?
io.sockets.on('connection', function (client)
{
console.log(client.id);
client.handshake.headers.cookie.socketID = client.id; // not work
// client.handshake.headers.cookie("socketID",client.id); //crash
console.log(client.handshake.headers.cookie);
// The current output is:
//connect.sid=tI21xumy3u2n4QXO1GljmPAf.pzFQ1Xu%2B6bz36secu4VSCdSNU8PT1L44gQZ4kFUFQqQ
//this is express session id, and I also want to add client.id of Socket.IO.
//...........
}
我已经阅读了 http://www.danielbaulig.de/socket-ioexpress/ ,但我不需要 node.js 上的会话管理,而只需要像 connect.sid 一样在 cookie 中添加一个 socket.io 客户端 ID 值。