io.sockets.socket(socket_id).emit() - has no method 'socket'

前端 未结 4 1767
感情败类
感情败类 2020-12-18 06:40

im running a nodejs server + express + socket.io version 1.0.4 and everything works as expected in my app, but i just cant emit a message from server side to client side via

相关标签:
4条回答
  • 2020-12-18 07:15

    In 1.0 you should use:

    io.sockets.connected[socketid].emit();
    

    to emit to a specific client.

    socket_server.sockets.socket(socket_id).emit(); 
    

    has been replaced in socket.io 1.0.

    0 讨论(0)
  • 2020-12-18 07:21

    in 1.x version, u can find in docs a list of migration tips from oldest version, especifically

    Broadcasting to all clients in default namespace

    Previously:

    io.sockets.emit('eventname', 'eventdata');

    Now:

    io.emit('eventname', 'eventdata');

    red the docs here

    0 讨论(0)
  • 2020-12-18 07:24

    Change your last part of code to:

    var io = require('socket.io').listen(server);
    io.on('connection', function(socket) {
        socket.emit('msg',data);
        //to only that client
        io.sockets.emit('msg',data);
        //to all sockets.
    }
    

    io is your socket_server. And you listen for connections to it, not to its sockets.

    0 讨论(0)
  • 2020-12-18 07:26

    In version >= 1.0 you should use:

    io.to(socket.id).emit();
    

    where socket.id is the id as string. The solution was found by victorwoo in following thread https://github.com/socketio/socket.io/issues/1618

    Note: The solution describe above by Tony Chen

    io.sockets.connected[socketid].emit();
    

    didn't worked for me, since io.sockets.connected is an array of socket objects and not string (id)

    0 讨论(0)
提交回复
热议问题