mirror of
https://gitee.com/an-tao/drogon.git
synced 2024-11-29 18:27:43 +08:00
24 lines
543 B
HTML
24 lines
543 B
HTML
<!DOCTYPE html>
|
|
<pre id="log"></pre>
|
|
<script>
|
|
// helper function: log message to screen
|
|
function log(msg) {
|
|
document.getElementById('log').textContent += msg + '\n';
|
|
}
|
|
|
|
// setup websocket with callbacks
|
|
var ws = new WebSocket("ws://127.0.0.1:8848/chat");
|
|
ws.onopen = function() {
|
|
log('CONNECT');
|
|
ws.send("hello!!!");
|
|
};
|
|
ws.onclose = function() {
|
|
log('DISCONNECT');
|
|
};
|
|
ws.onmessage = function(event) {
|
|
log('MESSAGE: ' + event.data);
|
|
// ws.send(event.data);
|
|
// ws.send(event.data);
|
|
};
|
|
</script>
|