几个小时后,我注意到浏览器从scoket服务器断开连接,我相信这是浏览器的问题,也许一段时间后它没有活动就关闭了连接...
我连接了这样的东西:
this.socket = io(environment.socketUrl, {
reconnection: true,
reconnectionDelay: 1000,
reconnectionDelayMax: 5000,
reconnectionAttempts: Infinity,
forceNew: true,
secure: true,
query: "token=" + this.authService.getToken()
});
它在断开连接后会强制连接,但这不是很好,因为我需要稳定的连接而不需要制动。有什么方法可以防止浏览器断开连接吗?