0

私は JavaScript を初めて使用します (主にバックエンドで作業しています) が、今はビジュアライゼーションを作成し、そのために JavaScript を使用したいと考えています。

次の形式のファイルにデータを保存しています

id1 uid1 rating
id1 uid2 rating2

はじめに、このファイルからデータを読み取り、ブラウザに表示したいですか? サーバーを起動する必要がありますか..または、そのように実行できますか.

任意の提案/指示をいただければ幸いです。ありがとう

4

1 に答える 1

1

ajax について学び、ブラウザの違いに対処する必要があります。firefox と chrome で動作する方法は次のとおりです。

  <body>
  <div id="log"></div>
    <script type="text/javascript">
    var request = new XMLHttpRequest();//depends on the browser , several ways to create the object
    request.onreadystatechange = function(e){
      if(request.readyState == 4 && request.status==200){
        // do whatever you need with the data
        document.getElementById("log").innerText = request.responseText;
      }
    }
    // assuming the file is called data and is located on current-path-on-server/data
    request.open("GET","data",true);
    request.send();
  </script>  
  </body>

それについての詳細:

https://developer.mozilla.org/en-US/docs/AJAX/Getting_Started

于 2013-02-02T01:01:06.390 に答える