0

我是初学者!我有一个 txt 文件,其中一些数据按列排列,我想使用 JQPLOT 在折线图中用不同的线显示每一列。有没有办法做到这一点而不将 txt 文件转换为 json 文件或 xml 文件?

这是我的 txt 文件的示例:

description line 1   <-- I'm not interested in this line
description line 2   <-- I'm not interested in this line
1.22 2.23 3.43 4.45  <-- The 4 columns are separed by a space
1.20 2.10 4.49 5.12
1.10 3.02 3.98 4.78
1.22 2.23 3.43 4.45
1.20 2.10 4.49 5.12
1.10 3.02 3.98 4.78 `

对不起,我的英语不好!感谢您的任何帮助!

4

1 回答 1

0

无需将数据转换为 JSON 或 XML。您可以对 txt 文件发出 AJAX 请求,然后将其解析为 jqplot 期望的格式(以下代码均未经过测试,但应该可以帮助您入门):

$.ajax({url:"/path/to/Text.txt",
  success:function(result){
    var fileLines = result.split("\n") //result is the file, split on the lines
    var jqplotData = [];
    for (var i = 2; i < fileLines.length(); i++) // skip first two lines
    {
       var aLine = fileLins[i].split(" ");
       var aSeries = [];
       for (var j = 0; j < aLine.length(); j++)
       {
          aSeries.push(parseFloat(aLine[j])); // build array for each series 
       }
       jqplotData.push(aSeries); // add series to larger data array
    }

    // now call jqplot with your data...
    var plot1 = $.jqplot('chartDiv', jqplotData, {});
  }
});
于 2012-09-03T20:22:58.953 回答