gpt4 book ai didi

javascript - 在 JavaScript 中从 JSON 对象创建表

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:48:46 25 4
gpt4 key购买 nike

我正在尝试创建一个 HTML 表格,其中包含我用来绘制绘图的信息。我不想查询数据库两次,我想用这些信息创建图表和表格。这是我从服务器得到的,它被绘制成图表:

var data = {
"selector":"#charttotalday",
"jsondata":[
{
"label":"Client1",
"data":[
[1382670000000,110157],
[1382756400000,199055],
[1382842800000,362996],
[1382929200000,302],
[1383015600000,169],
[1383102000000,88],
[1383188400000,49]
],
"points":{
"fillColor":"#88bbc8"
}
},
{
"label":"Client2",
"data":[
[1382670000000,58611],
[1382756400000,112268],
[1382842800000,193060],
[1382929200000,115],
[1383015600000,45],
[1383102000000,65],
[1383188400000,18]
],
"points":{
"fillColor":"#ed7a53"
}
},
{
"label":"Client3",
"data":[
[1382670000000,65534],
[1382756400000,118362],
[1382842800000,200058],
[1382929200000,123],
[1383015600000,65],
[1383102000000,53],
[1383188400000,26]
],
"points":{
"fillColor":"#9FC569"
}
}
]
};

由于信息的组织方式,我无法使用 $.each 对其进行循环并创建以下格式的表格:

                Client1  Client2  Client3
1382670000000 | 10157 | 58611 | 65534 |
1382756400000 | 99055 | 12268 | 18362 |
1382842800000 | 62996 | 93060 | 10058 |
1382929200000 | 302 | 115 | 123 |
1383015600000 | 169 | 45 | 65 |
1383102000000 | 88 | 65 | 53 |
1383188400000 | 49 | 18 | 26 |

我认为最好的方法是读取对象并创建一个具有我需要的结构的新对象,它可以与 $.each 一起使用。

我试过这个:

$.each(data.jsondata, function(key, value) {
thead += '<th>' + value.label + '</th>';
tableData[value.label] = new Object();
$.each(value.data, function(key1, value1) {
$.each(value1, function(key2, value2) {
if(key2 == 0) {
//here I have the time line, axis Y
index = value2;
}
if(key2 == 1) {
//here I have the values for the table
tableData[value.label][index] = value2;
}
});
});
});

thead += '</tr>';

但这只是用我需要的信息创建了一个更简单的元素,但仍然不能变成我需要的。

有人能给我指出正确的方向吗?

最佳答案

这会将您的数据映射到表中:

 var headers=[ ""], rows={}
$.each(data.jsondata,function(clientIdx,item){
headers.push(item.label );
$.each( item.data,function(i,arr){
if( !rows[arr[0]]){
rows[arr[0]]=[];
}
rows[arr[0]][clientIdx]=arr[1];
})
})


var rowHtml='<tr><th>'+headers.join('</th><th>')+'</th></tr>';
$.each(rows,function(key, arr){
rowHtml+='<tr><td>'+key+'</td>';
rowHtml +='<td>'+arr.join('</td><td>')+'</td></tr>';

})

$('#table').html(rowHtml);

DEMO

关于javascript - 在 JavaScript 中从 JSON 对象创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19718215/

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