4.2.7 命名空间发送事件参数 namespace_emit_eventname_args
const io= require('socket.io')();
io.emit('an event send to all connected clients'); //主命名空间
const chat = io.of('/chat');
chat.emit('an event send to all connected clients in chat namespace');Last updated
Was this helpful?