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

前端 未结 4 1784
感情败类
感情败类 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条回答
  •  猫巷女王i
    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.

提交回复
热议问题