我想抓住任何事件,无论名称是从套接字发送的。我可以在这里使用某种通配符吗?
io.on('connection', function (socket) {
socket.on('any event', function (data) {
...
});
});
答案 0 :(得分:1)
您可以使用通配符插件来收听所有事件
http://socket.io/docs/faq/ https://github.com/hden/socketio-wildcard