在一个html元素中使用多个ngrepeat /或解决方法?

时间:2014-07-31 08:27:31

标签: html angularjs html-table

我想制作如下表格:

<table>
  <thead>
    <tr>
      <th rowspan="2" ng-repeat="item in someitems">{{ item.title }}</th>
      <th colspan="{{ group.items.length }}" ng-repeat="group in some_item_groups">{{ group.title }}</th>
    </tr>
    <tr>
      <th ng-repeat="item in (group in some_item_groups).items">{{ item.title }}</th>
    </tr>          
  </thead>
  <tbody>
    ...
  </tbody>
</table>

(我试图在这里添加表格图片,但没有足够的声誉点。)

有没有办法用角度ng-repeat绘制这种类型的表?

0 个答案:

没有答案