2013-05-18 3 views
3

J'ai ce simple problème WebSocketComment accéder aux codes événements onclose en Javascript onclose function?

<!DOCTYPE html> 
<meta charset="utf-8" /> 
<title>WebSocket Test</title> 
<script language="javascript" type="text/javascript"> 
    var wsUri = "ws://echo.websocket.org/"; 
    var output; 

    function init() { 
     output = document.getElementById("output"); 
     testWebSocket(); 
    } 
    function testWebSocket() { 
     websocket = new WebSocket(wsUri); 
     websocket.onopen = function (evt) { 
      onOpen(evt) 
     }; 
     websocket.onclose = function (evt) { 
      onClose(evt) 
     }; 
     websocket.onmessage = function (evt) { 
      onMessage(evt) 
     }; 
     websocket.onerror = function (evt) { 
      onError(evt) 
     }; 
    } 
    function onOpen(evt) { 
     writeToScreen("CONNECTED"); 
     doSend("WebSocket rocks"); 
    } 
    function onClose(evt) { 
     writeToScreen("DISCONNECTED"); 
    } 
    function onMessage(evt) { 
     writeToScreen('<span style="color: blue;">RESPONSE: ' + evt.data + '</span>'); 
     websocket.close(); 
    } 
    function onError(evt) { 
     writeToScreen('<span style="color: red;">ERROR:</span> ' + evt.data); 
    } 
    function doSend(message) { 
     writeToScreen("SENT: " + message); 
     websocket.send(message); 
    } 
    function writeToScreen(message) { 
     var pre = document.createElement("p"); 
     pre.style.wordWrap = "break-word"; 
     pre.innerHTML = message; 
     output.appendChild(pre); 
    } 
    window.addEventListener("load", init, false); 
</script> 
<h2>WebSocket Test</h2> 
<div id="output"></div> 

</html> 

Ma question est que comment puis-je avoir accès aux sockets web codes proches ?? comme mentionné dans ce site

https://developer.mozilla.org/en-US/docs/WebSockets/WebSockets_reference/CloseEvent

1001 CLOSE_GOING_AWAY 
1000 CLOSE_NORMAL 
1005 CLOSE_NO_STATUS 
1006 CLOSE_ABNORMAL 

En ce moment, c'est ma fonction onclose

function onClose(evt) { writeToScreen("DISCONNECTED"); } 

J'ai mis une alerte en alerte (EVT), mais je ne reçois pas fermer le code.

Quelqu'un pourrait s'il vous plaît aider

Répondre

10

Essayez ceci:

function onClose(event) 
{ 
    alert('Onclose called' + event); 
    alert('code is' + event.code); 
    alert('reason is ' + event.reason); 
    alert('wasClean is' + event.wasClean); 
} 
+3

La première alerte sera juste produire un inutile '[object Object]' ' –

+1

devrait être alert ('appelé onClose' + JSON.stringify (event)); ' –

+0

Non, cela devrait être' JSON.stringify (event, Object.getOwnPropertyNames (event)) 'car [sinon beaucoup de propriétés ne seront pas affichées] (https://stackoverflow.com/questions/44815172/log -shows-error-object-istrustedtrue-au lieu-de-real-error-data). –

Questions connexes