我收到此错误消息
TypeError: Object [object Object] 没有方法'emit'
尝试访问 中的套接字时helpQue
,该套接字由helpQue.push(socket)
.
helpQue
和都是cxsQue
套接字数组。
setInterval(function() {
if(helpQue.length > 0 && cxsQue.length > 0) {
var id = makeid(),
helpee = helpQue.splice(0, 1);
helpee.emit('server-output', 'Test'); //ERROR here
}
}, 1000);