0
試圖訪問在helpQue
的插座,其被構造爲具有helpQue.push(socket)
當我正在此錯誤消息socket.io對象沒有方法「發出」
TypeError: Object [object Object] has no method 'emit'
。
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);