我正在使用socket.io在我的应用程序中进行websocket通信。连接丢失后,它尝试重新连接6次,然后达到超时。当它不再尝试重新连接时,是否会发出任何事件?
我发现这是一个已知的问题。
参考:https://github.com/LearnBoost/socket.io/issues/652
悲伤…:(
从源代码来看,事件似乎是"重新连接失败"
if (this.attempts > this._reconnectionAttempts) {
this.emit('reconnect_failed');
this.reconnecting = false;
}