我有一个脚本,它生成一个带有以下数据的date.log文件
10:00 1200
10:01 1400
10:02 1350
10:03 1990
10:04 2999
10:05 1388
10:06 1000
我正在尝试将其解析为所需的JQPLOT格式
[[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]
我已经看到过以下代码的帖子已被建议用于类似但我无法使其工作。
$.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, {});
}
});
是否有人能够提供一个如何解析date.log文件或如何使上述代码正常工作的示例?