我正在尝试创建一个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>';
但这只会创建一个更简单的元素,其中包含我需要的信息,但仍然无法转化为我需要的信息。
有人可以指出我正确的方向吗?
答案 0 :(得分:6)
这会将您的数据映射到表格:
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 强>