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.
我们使用 var abc = new WebSocket(url) 连接在 websocket 中建立新连接,所以在 socket.io 中我们用来连接它的内容或我该怎么做,请回答。
如何将 Socket.IO 客户端连接到服务器取决于每个客户端。如果您在浏览器上使用 JavaScript 客户端,您可以执行以下操作:
socket = io();
或者,如果您需要连接到第 3 方服务器:
socket = io('https://my.domain.com');