0

我正在使用 socket.io 在我的应用程序中进行 websocket 通信。连接丢失后,它尝试重新连接 6 次,然后达到超时。当不再尝试重新连接时,是否有任何事件发出?

4

2 回答 2

1

好吧,我发现这是一个已知问题。

参考:https ://github.com/LearnBoost/socket.io/issues/652

伤心... :(

于 2013-07-10T09:02:20.617 回答
0

从源代码看来,事件是“reconnect_failed”

if (this.attempts > this._reconnectionAttempts) {
this.emit('reconnect_failed');
this.reconnecting = false;
} 
于 2013-07-09T13:19:11.983 回答