4

每次服务器收到请求时,我都想在服务器端(使用 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});

谢谢!

4

1 回答 1

0

对于那些在谷歌上找到这个的人 - 现在有一个解决方案:

Socket.disconnect() 踢客户端(服务器端)。客户没有机会保持联系:)

使用 socket.io 和 nodejs 强制客户端与服务器断开连接

我认为您只需要删除 disconnect() 行。

于 2012-10-24T13:00:58.980 回答