Socket.io 在断开连接时重新连接?
这样的事情可能吗?
socket.on('disconnect', function(){
console.log('disconnected...');
socket.connect();
socket.on('connect', function(){
console.log('...reconnected');
})
})
Is something like this possible?
socket.on('disconnect', function(){
console.log('disconnected...');
socket.connect();
socket.on('connect', function(){
console.log('...reconnected');
})
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Socket.io 会自动重新连接(如果您设置了
reconnect
选项,尽管它默认为 true),因此您实际上不需要这样做。此外,还有一个
reconnect
事件似乎更合适。另外,独立设置事件处理程序,不要在执行断开处理程序时设置连接处理程序。
Socket.io reconnects automatically (if you set the
reconnect
option, although it defaults to true), so you don't really need to do that.Furthermore, there is a
reconnect
event which seems far more appropriate.Also, set your event handlers independently, don't set the connect handler in the execution of the disconnect handler.