我试图在允许客户端连接到它之前检测 websocket 是否正在运行。考虑以下代码:
var socket = io.connect('1.1.1.1:1234');
socket.on('connect',function() {
console.log('Client has connected to the server');
});
socket.on('disconnect',function() {
console.log("The client has disconnected from the server");
});
如何确保仅在该 IP 上的服务器实际运行时才调用此块,以及如何向用户输出一条消息,说明服务器未启动?
谢谢