每次服务器收到请求时,我都想在服务器端(使用 node.js)创建新的 sockei.io-client。但是下面的代码只工作一次,然后 sockei.io-client 没有响应。应用程序不会停止,没有错误。
var http = require("http");
http.createServer(function(request, response) {
var io = require('socket.io-client');
localSocket = io.connect('http://localhost:9876/');
localSocket.on('connect', function (data) {
response.writeHead(200, {"Content-type": "text/plain"});
response.write(data.name);
response.end();
localSocket.disconnect();
});
}).listen(8080);
Socket.io 服务器(在 localhost:9876 上)运行良好 - 它为具有名称的客户端提供服务(即
data.name
在这里的代码中)。
怎么了?
更新:问题由我自己解决:要为 socket.io-client 运行多个连接,需要添加连接选项 {'force new connection': true},如下所示:
localSocket = io.connect('http://localhost:9876/', {'force new connection': true});
谢谢!