Anders and Briegel in Python
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
491B

  1. var body;
  2. var state;
  3. function poll() {
  4. var xhr = new XMLHttpRequest();
  5. xhr.onload = function() {
  6. state = JSON.parse(xhr.responseText);
  7. console.log(state);
  8. //soft_console.innerHTML = "\n" + xhr.responseText;
  9. };
  10. xhr.onerror = function(e){
  11. //soft_console.innerHTML = "\n" + "Lost connection to server";
  12. };
  13. xhr.open("GET", "/state", true);
  14. xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
  15. xhr.send();
  16. }