Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Web 应用程序,除其他外,它在套接字上侦听来自远程客户端的消息的连接。当用户刷新页面时,我的问题就出现了。页面刷新后,应用程序正在重新加载,并再次尝试侦听存在异常的同一端口 - “地址已在使用中”。
有没有办法解决这个问题?
您正在同一页面上创建 Socket。并且当刷新该页面时,将再次为同一地址发送创建套接字的请求,并且该地址已被绑定。
有几种方法可以解决它。最简单的方法是将 Socket 创建与您的页面分开,并相应地处理连接和刷新。