2012-06-15 2 views

risposta

2

nella versione corrente di socket.io (1.3.x) è possibile utilizzare il connect_error evento o l'evento reconnect_failed:

var socket = io(serverUrl); 
socket.on('connect_error', function() { 
    console.log('Connection failed'); 
}); 
socket.on('reconnect_failed', function() { 
    console.log('Reconnection failed'); 
}); 

See: https://github.com/Automattic/socket.io-client#events