namespace.emit(eventName[, ...args])

优质
小牛编辑
134浏览
2023-12-01
  • eventName (String)
  • args

触发一个事件给所有的连接中的客户端。下方代码的两种示例作用是等价的。

const io = require('socket.io')();
io.emit('an event sent to all connected clients'); // main namespace

const chat = io.of('/chat');
chat.emit('an event sent to all connected clients in chat namespace');

注意:从命名空间触发的事件不支持消息送达确认。