1

我在 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?

4

1 回答 1

0

我最近遇到了同样的问题。以下链接帮助我解决了我的问题。

于 2013-10-18T13:36:05.577 回答