是否有可能让socket.io客户端响应所有事件而无需单独指定每个事件?
例如,如下所示(显然现在不起作用):
var socket = io.connect("http://myserver");
socket.on("*", function(){
// listen to any and all events that are emitted from the
// socket.io back-end server, and handle them here.
// is this possible? how can i do this?
});
我希望在客户端socket.io代码收到任何/所有事件时调用此回调函数。
这可能吗?怎么样?