这是我的小提琴link
我有一个从Ajax响应中获取的JSON动态创建的表。
表格中有重复的条目。例如xxx,xxx
。
我想将它们分组并让它像<td data-count="some count">xxx</td>
我尝试使用underscore.js
,但似乎打破了rowspan
功能。
我使用arr
将_countBy(arr)
转换为对象,我获得了以下格式的对象。
{xxx: 2, zzz: 1}
问题:如何修改generateTable()
功能以适应此更改。我尝试按以下方式修改它
var i=0;
$.each(queryObject,function(key,value){
if(i == 0){
i++;
childrenHtml += ('<td rowspan="1" data-count="'+value+'">' + key + '</td>' + '</tr>');
}
else{
childrenHtml += ('<tr><td rowspan="1" data-count="'+value+'">' + key + '</td>' + '</tr>');
}
});
但是,现在看起来有些问题。我该怎么修改呢?
答案 0 :(得分:2)
您需要制作这样的函数来转换数据并对其进行分组:
_.chain(data.result)
.keys()//get all the keys buildname1 buildname2..etc
.flatten()
.each(function(key) {//for each key do a mapping and return a grouping.
data.result[key] = _.chain(data.result[key]).flatten().map(function(d) {
var key = _.chain(d).keys().first().value();
var ob = {};
ob[key] = _.chain(d).values().flatten().groupBy().value();//grouping by value
return ob;
}).value();
}).value();
这会将您的数据集转换为以下格式:
{
"buildname1":[
{
"table1":{
"xxx":[
"xxx"
],
"zzz":[
"zzz",
"zzz"
]
}
},
{
"table2":{
"xxx":[
"xxx"
],
"yyy":[
"yyy"
]
}
}
],
"buildname2":[
{
"table1":{
"xxx":[
"xxx",
"xxx"
],
"zzz":[
"zzz"
]
}
},
{
"table2":{
"xxx":[
"xxx",
"xxx"
]
}
},
{
"table3":{
"xxx":[
"xxx"
],
"yyy":[
"yyy"
]
}
}
]
}
然后,您需要更改制作表格的biz逻辑,并计算rowspan。
工作代码here