我正在使用 socket.io 创建一个 Node.js 聊天
问题是,当我看到的时console.log
,history
我看到一个包含很多空值的数组,最后我的历史条目
[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,[]]