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.

22 satır
432B

  1. function poll() {
  2. var ws = new WebSocket("ws://localhost:5001");
  3. ws.onopen = function()
  4. {
  5. console.log("Connected to server.");
  6. };
  7. ws.onmessage = function (evt)
  8. {
  9. var new_state = JSON.parse(evt.data);
  10. vops = new_state.vops;
  11. ngbh = new_state.ngbh;
  12. updateScene();
  13. };
  14. ws.onclose = function()
  15. {
  16. console.log("Connection was closed.");
  17. };
  18. }