最佳答案
我编写了一个代码,用于向 所有用户广播信息:
// websocket and http servers
var webSocketServer = require('websocket').server;
...
...
var clients = [ ];
var server = http.createServer(function(request, response) {
// Not important for us. We're writing WebSocket server, not HTTP server
});
server.listen(webSocketsServerPort, function() {
...
});
var wsServer = new webSocketServer({
// WebSocket server is tied to a HTTP server.
httpServer: server
});
// This callback function is called every time someone
// tries to connect to the WebSocket server
wsServer.on('request', function(request) {
...
var connection = request.accept(null, request.origin);
var index = clients.push(connection) - 1;
...
请注意:
array
中。目标 : 假设 Node.js 服务器想要向特定的客户机(John)发送消息。NodeJs 服务器如何知道 John 有哪个连接?Js 服务器根本不认识 John。它看到的只是联系。
所以,我相信现在,我不应该只存储用户的连接,相反,我需要存储一个对象,这将包含 userId
和 connection
对象。
想法:
当页面完成加载(DOM 就绪)时,建立到 Node.js 服务器的连接。
当 Node.js 服务器接受连接时——生成一个惟一的字符串并将其发送到客户端浏览器。将用户连接和唯一字符串存储在对象中。例如 {UserID:"6", value: {connectionObject}}
在客户端,当此消息到达时-将其存储在一个隐藏字段或 cookie 中。(用于以后对 NodeJs 服务器的请求)
当服务器希望向 John 发送消息时:
在字典中查找 john 的 UserID 并通过相应的连接发送消息。
请注意,这里没有涉及 asp.net 服务器代码(在消息机制中)
问题:
Is this the right way to go?