我需要从一组对象创建一个表,但我不想对表进行硬编码。例如,我不能这样做或这样做。我宁愿需要这样的嵌套 ng- repeats。但我的情况有点不同,因为我的列包含数组中的两个值。数据如下所示:
[
{
"foo":"bar",...,
"key1":[
"value1",
"value2"
],
"key2":[
"value1",
"value2"
],...,
"more_foo":"more_bar"
},...
]
我想要表行中的数组中所有对象(始终具有相同结构)的值(始终是字符串),其中每个键应该是列名。像这样:
table,
th,
td {
border: 1px solid black;
text-align: center;
border-spacing: 0;
}
td,
th {
padding: 0.5em;
}
<table>
<thead>
<tr>
<th>foo</th>
<th colspan="2">key1</th>
<th colspan="2">key2</th>
<th>more_foo</th>
</tr>
</thead>
<tbody>
<tr>
<td>bar</td>
<td>value1</td>
<td>value2</td>
<td>value1</td>
<td>value2</td>
<td>more_bar</td>
</tr>
</tbody>
</table>
这是我想出的:
<table>
<thead>
<tr>
<th ng-repeat="(propName, prop) in myArray[0]"
colspan="{{isUpdateable(propName) ? 2 : undefined}}"> {{propName}}
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="object in myArray | filter: searchFilter">
<td ng-repeat="(propName, prop) in object" double-col>{{prop}}</td>
</tr>
</tbody>
</table>
isUpdatable(propName)
如果此值是一个数组,则返回 true,否则返回 false。这将使td
该列中有两个 s 成为可能。
双列指令:
app.directive('double-col', function () {
return {
transclude: true,
template: "<td>{{prop[0]}}</td><td class=\"changedProp\">{{prop[1]}}</td>"
};
});
我希望这个指令td
用两个td
s 替换现有的当且仅当prop
是一个数组,否则什么都不做显示prop
(见td
上文)。
因为您在https://stackoverflow.com(人们发布还不能正常工作的东西的地方),所以您可能会猜到我当前的代码不能很好地工作。我也是 angularJS 的新手,基本上不了解自定义指令(可能还有大多数其他东西),所以如果有人能帮助我解决这个问题并提供解释,那就太好了。