Anders and Briegel in Python
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- function poll() {
- var ws = new WebSocket("ws://localhost:5001");
- ws.onopen = function()
- {
- console.log("Connected to server.");
- };
-
- ws.onmessage = function (evt)
- {
- var received_msg = evt.data;
- console.log("Message received: " + evt.data);
- };
-
- ws.onclose = function()
- {
- console.log("Connection was closed.");
- };
- }
-
- window.onload = poll;
|