如何仅向具有我指定的特定ID的用户发送消息?
例如,我有一个id = 5的用户,我只想向他发送消息,而不是所有连接的消息。在他连接时如何将此ID发送到服务器?它有可能吗?
客户端
<?php
$id=5; // id to send to
echo '
<div id="id">'.$id.'</div>
<div id="messages"></div>
<input type="text" id="type">
<div id="btn">Press</div>
';
?>
<script>
$(document).ready(function(){
var id=$('#id').html();
var socket=io.connect('http://localhost:8010');
socket.on('connecting',function(){alert('Connecting');});
socket.on('connect',function(){alert('Connected');});
socket.on('message',function(data){message(data.text);});
function message(text){$('#messages').append(text+'<br>');}
$('#btn').click(function(){
var text=$('#type').val();
socket.emit("message",{text:text});
});
});
</script>
服务器
io.sockets.on('connection',function(client){
client.on('message',function(message){
try{
client.emit('message',message);
client.broadcast.emit('message', message);
}catch(e){
console.log(e);
client.disconnect();
}
});
});
答案 0 :(得分:3)
您可以在握手时将用户ID从客户端传递到服务器,并让用户加入群组(例如&#34; user5&#34;)。然后你可以发射到这个组:
客户方:
var id=$('#id').html();
var socket=io.connect('http://localhost:8010', {
query: 'userId=' + id
});
服务器端:
io.sockets.on('connection',function(client){
var userId = client.handshake.query.userId;
client.join('user' + userId);
//from now each client joins his personal group...
//... and you can send a message to user with id=5 like this:
io.to('user5').emit('test', 'hello');
//your further code
});