我在 php 中借助 setcookie($name, $value) 设置了 cookie。
然后:
socket.on('connection', function(socket) {
var parse = cookie.parse(socket.handshake.headers.cookie);
console.log(parse);
}
我只收到这样的东西
{ 'connect.sess': 's:j:{}.CoRLkkQvzo1011EOxT2IdmJh5rqejQ0m5dp0XGFCIz4' }
socket.handshake.headers.cookie 没有存储我所有的cookie?