通常,我们只将我们想要发送的数据作为websocket.send()
方法的参数,但我想知道是否还有其他参数,例如我们可以放在括号内的 IP。我们可以这样使用它:
websocket.send(ip, data); // send data to this ip address
或者我应该调用其他方法?
通常,我们只将我们想要发送的数据作为websocket.send()
方法的参数,但我想知道是否还有其他参数,例如我们可以放在括号内的 IP。我们可以这样使用它:
websocket.send(ip, data); // send data to this ip address
或者我应该调用其他方法?
据我了解,您希望服务器能够通过从客户端 1 向客户端 2 发送消息。您不能直接连接两个客户端,因为 WebSocket 连接的两端之一需要是服务器。
这是一些伪代码 JavaScript:
客户:
var websocket = new WebSocket("server address");
websocket.onmessage = function(str) {
console.log("Someone sent: ", str);
};
// Tell the server this is client 1 (swap for client 2 of course)
websocket.send(JSON.stringify({
id: "client1"
}));
// Tell the server we want to send something to the other client
websocket.send(JSON.stringify({
to: "client2",
data: "foo"
}));
服务器:
var clients = {};
server.on("data", function(client, str) {
var obj = JSON.parse(str);
if("id" in obj) {
// New client, add it to the id/client object
clients[obj.id] = client;
} else {
// Send data to the client requested
clients[obj.to].send(obj.data);
}
});