gpt4 book ai didi

javascript - 制作一个简单的二维数组

转载 作者:行者123 更新时间:2023-11-30 11:24:54 26 4
gpt4 key购买 nike

我正在尝试创建这样的实时图表:http://www.flotcharts.org/flot/examples/ajax/index.html

问题是我需要这样的数据:

var rawData = [
[1325347200000, 60], [1328025600000, 100], [1330531200000, 15], [1333209600000, 50]
];

$(document).ready(function () {
var rx_bytes = [];
var iteration = 0;

//Options
var options = {
lines: {
show: true
},
points: {
show: true
},
xaxis: {
tickDecimals: 0,
tickSize: 1
}
};

//Initial Plot
$.plot("#networkStats", rx_bytes, options);

function getStatistics() {
iteration++;

$.ajax({
url: '/getStatistics',
type: 'post',
dataType: 'json',
success: function (statistics) {
console.log(statistics);
var network = statistics.networks.eth0;
rx_bytes.push({
index: iteration,
data: network.rx_bytes
});
console.log(rx_bytes);

//Plot
$.plot("#cpuStats", [rx_bytes], options);
//get data again
getStatistics();
}
});
}

getStatistics();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

我的数组输出是这样的:http://prntscr.com/i3y8ve

如何制作像上面那样的数组?

最佳答案

这应该可以解决:

          rx_bytes.push([
iteration,
network.rx_bytes
]);

关于javascript - 制作一个简单的二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48383862/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com