2

我正在使用 socket.io 创建一个 Node.js 聊天
问题是,当我看到的时console.loghistory我看到一个包含很多空值的数组,最后我的历史条目 [null,null,null......[ { username: 'Nobody Example', message: '231', date: '03/21/2013 14:23:58' } ]]

这些空值怎么会在数组中?
这是我的代码的一部分。

var history = [];

io.sockets.on('connection', function (socket) {

    socket.on('send', function (message) {
        var date = time();

        io.sockets.in(socket.room).emit('message', socket.username, message, date);

        history[socket.room].push({ username: socket.username, message: message, date: date });

        console.log(history);

    });

    socket.on('joinroom', function (room, username) {
        socket.room = room;
        socket.join(room);

        if ( typeof history[room] === 'undefined' )
            history[room] = [];

    });

});

编辑以获取更多详细信息:

问题出在为每个房间创建空数组时的“joinroom”事件中。
以下是我进行的一些测试:

socket.on('joinroom', function (room, username) {
    socket.room = room;
    socket.join(room);

    console.log(typeof history[room] == 'undefined');
    history[room] = [];
    console.log(typeof history[room] == 'undefined');
    console.log(JSON.stringify(history));
});

控制台日志:

真的
错误的
[null,null,null,null,........,null,[]]
4

2 回答 2

6

如果您有一个空数组并使用大数字(例如您的房间 ID)对其进行索引,则该数字之前的数组中的所有插槽都将被填充undefined(转换为nullJSON)。

所以试着把历史变成一个对象:

var history = {};
于 2013-03-21T15:18:18.900 回答
0

尝试下面的代码更改为对象(哈希);

var history = {};

io.sockets.on('connection', function (socket) {

socket.on('send', function (message) {
    var date = time();

    io.sockets.in(socket.room).emit('message', socket.username, message, date);

    if(history[socket.room] !== undefined) {
          history[socket.room].push = { username: socket.username, message: message, date: date   };
    } else {
        history[socket.room] = [{ username: socket.username, message: message, date: date   }];
    }

    console.log(history);

});
于 2013-03-21T15:11:17.050 回答