0

我正在尝试将 socket.io 代码从 0.9v 重建到 1.x。Express 和 socket.io 是最后一个版本。

所以,错误:Cannot call method 'get' of undefined

 io.on('connection', function(socket) {
            console.log(socket.handshake);
            var username = socket.handshake.user.get('username'); //<----here

            ......

这是我的代码:

module.exports = function(server) {
                var io = require('socket.io')(server);
                io.set('origins', 'localhost:*');
            //I changed set to use, but it's doesn't matter i think
                io.use(function(socket, next) {  
                    var handshake = socket.request;
                //io.set('authorization', function(handshake, callback) {
                    async.waterfall([
                        function(callback) {
                         handshake.cookies = cookie.parse(handshake.headers.cookie || '');

     var sidCookie = handshake.cookies[config.get('session:key')];
      var sid = connect.utils.parseSignedCookie(sidCookie, config.get('session:secret'));
      //var sid = cookieParser.signedCookie(sidCookie, config.get('session:secret'));

                            loadSession(sid, callback);
                        },  ...continue...

继续:

function(session, callback) {

                            if (!session) {
                                callback(new HttpError(401, "No session"));
                            }

                            handshake.session = session;
                            loadUser(session, callback);
                        },
                        function(user, callback) {
                            if (!user) {
                                callback(new HttpError(403, "Anonymous session may not connect"));
                            }

                            handshake.user = user;
                            callback(null);
                        }

                    ], function(err) {.....});
                next();
                });

        io.on('connection', function(socket) { ... };

返回 io;};

好的,请帮助我,谢谢!

4

1 回答 1

0

我将如何调试这个。 无法对未定义的事物调用方法

所以我们知道调用 .get 的东西还没有被创建。在这种情况下:

var username = socket.handshake.user.get('username'); //<----here

因此,如果您无法访问 ide 调试器,我要做的第一件事是

控制台日志(套接字)

如果有数据

console.log(socket.handshake);

如果有数据

console.log(socket.handshake.user);

如果有数据检查它是否有方法 GET。

无论如何,我的假设是socket.handshake.user尚未定义。设置/公开它的代码在哪里?

于 2014-11-09T11:28:20.590 回答