5

Javascript で Papa Parse を使用して、既知のローカル ディレクトリにある .csv ファイルを解析しようとしています。ユーザーにファイルを参照するように求めるメカニズムがあれば、それは魅力のように機能します。しかし、特定の場所にあるファイルに自動的にアクセスする方法がわかりません。シンプルなものが欠けているような気がしますが、何がわかりません。これまでの私のコード:

<html>
<head>
  <title>testing papa parse</title>
</head>
<body>

<script src="js/PapaParse-4.0.7/papaparse.min.js"></script>
<script src="js/jquery-2.1.1.min.js"></script>
<script>
  var data;
    // var file = evt.target.files[0];
    var file = "\\files\\telemetryData.csv";

      Papa.parse(file, {
      //makes sure the first line is interpreted as a header, not data
      header: true,

      //allows stuff to be typed as their respective primitive types instead of only strings. turned off in this case
      dynamicTyping: false,

      //allows you to define the delimiter if not a default comma
      delimiter: ",",

      //allows you to define a comment line, which would be skipped by the parser
      comments: "//",

      //turns on fastmode, quicker but assumes no quoted fields is present
      fastmode: true,

      download: true,

      step: function(results){
        console.log(results.data);
      }
    });
</script>

</body>
</html>

csv データ:

TEAM_ID,MISSION_TIME,ALT_SENSOR,OUTSIDE_TEMP,INSIDE_TEMP,VOLTAGE,FSW_STATE
ubArtemis,0,36,20,20,9,1
ubArtemis,1,45,18,20,9,1
ubArtemis,2,50,16,20,9,1
ubArtemis,3,65,14,19,9,1
ubArtemis,4,79,12,17,8,2
//hello this is a comment
ubArtemis,5,100,10,16,8,3
ubArtemis,6,120,8,15,8,4
ubArtemis,7,145,6,14,8,5
ubArtemis,8,160,4,12,7,6
ubArtemis,9,200,2,10,6,7
4

2 に答える 2

4

jquery を使用してファイルの内容を「取得」し、papaparse を使用して csv 文字列を解析します。

//parse the data file
    var csvfile = "data/data.csv";

    $.get(csvfile, function (data) {
        var csvdata = Papa.parse(data);
        console.log(csvdata);
    });
于 2015-07-07T16:51:42.053 に答える