13
Socket.io 클라이언트 : 하나의 핸들러로 모든 이벤트에 응답합니까?
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. …