socket.to(socket.id).emit()不起作用

时间:2017-08-30 02:49:55

标签: node.js express socket.io

尝试在socket.io中执行最简单的目标消息传递但没有成功。根据带有express.js的socket.io的documentation,您可以使用 socket.to(socket.id).emit('event name', 'message')

将消息定位到单个用户套接字

我已经从头到尾阅读了socket.io docs以及其他堆栈溢出Q / A herehere以及here。我找到的一些解决方案涉及创建房间并传递这些房间,但这个问题的目的是使用socket.io文档中给出的 socket.to(socket.id).emit('event name', 'message') 向套接字ID发送消息。

我正在使用节点v6.11.2,表达4.15.2和socket.io 2.0.3。

在我进行实验时,客户端和服务器代码几乎逐字逐句地从https://socket.io/get-started/chat/获取。

index.js

var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);

app.get('/', function(req, res){
    res.sendFile(__dirname + '/index.html');

    io.on('connection', function(socket){
        console.log(req.ip+' connected');
        socket.on('chat message', function(msg){
            console.log(socket.id);//logs the socket id. Something like 'AUCyM1tnpinCfvfeAAAB'
            console.log(msg);//logs whatever the message was, so I know the server is receiving the message
            socket.to(socket.id).emit('chat message', 'Nothing is happening here.');
        });
    });
});

http.listen(3000, function(){
  console.log('listening on *:3000');
});

的index.html

<!doctype html>
<html>
    <head>
        <title>Socket.IO chat</title>
        <style>
          ...
        </style>
    </head>
    <body>
        <ul id="messages"></ul>
        <form action="">
            <input id="m" autocomplete="off" /><button>Send</button>
        </form>
        <script src="/socket.io/socket.io.js"></script>
        <script src="https://code.jquery.com/jquery-1.11.1.js"></script>
        <script>
            $(function () {
                var socket = io();
                $('form').submit(function(){
                    socket.emit('chat message', $('#m').val());
                    $('#m').val('');
                    return false;
                });
                socket.on('chat message', function(msg){
                    $('#messages').append($('<li>').text(msg));
                });
            });
        </script>
    </body>
</html>

2 个答案:

答案 0 :(得分:3)

更改此内容:

socket.to(socket.id).emit('chat message', 'Your message');

对此:

io.to(socket.id).emit('chat message', 'Your message');

如果需要,您可以检查以下链接:https://socket.io/docs/emit-cheatsheet/

答案 1 :(得分:1)

改变这个:

socket.to(socket.id).emit(...)

到此:

socket.emit(...)

这是一个解释。 socket.to(socket.id).emit(...)将广播到名为socket.id的房间。没关系,有一个房间有这个名字,socket是唯一的成员。但是,socket.to()发送给该会议室的所有成员除socket以外,没有人可以将其发送给。{/ p>

因此,如果您只想发送到socket,请使用socket.emit()

以下是socket.io doc for socket.to()

的引用
  

为事件将发生的后续事件发射设置修饰符   只有广播给已加入特定房间的客户(   套接字本身被排除在外。)