我无法找到解决方案,也无法更改数据架构,因为我使用可滚动的tbody,所以无法复制tbdoy 所以任何人都有任何想法?
<table class="table table-hover" id="grid">
<thead>
<tr>
<th>#</th>
<th><?php echo $conf->get('text.phone_number', 'Phone Number'); ?></th>
<th><?php echo $conf->get('text.group_subject', 'Group Subject'); ?></th>
<th><?php echo $conf->get('text.categories', 'categories'); ?> ...</th>
</tr>
</thead>
<tbody ng-repeat="data in shared.data">
<tr ng-repeat="group in data.groups" class="representor">
<td>{{$index+1}}</td>
<td>{{data.provider.number}}</td>
<td>{{group.subject}}</td>
<td ng-if="! group.categories"><a href="#" ng-click="addCategoryClick(group)">הוסף קטגוריה</a></td>
</tr>
</tbody>
</table>
答案 0 :(得分:2)
只需将另一个属性添加到范围A
,然后添加如下方法:
A12
和html修改为:
replacements = dict((k[0],k) for k in key.keys())
# replacements is equal to {'A': 'A12', 'C': 'C14'}
怀疑这会以显着的方式降低性能