2

我正在使用 angular/ng-table 以表格形式绘制数值数据。我无法弄清楚如何在表格末尾添加一行,该行显示每列所有值的总和。我可以在服务器端计算数据并将其呈现在 UI 中。但是有没有办法在 ng-table/ng-grid 中实现这一点?任何帮助将不胜感激。

谢谢

4

1 回答 1

4

你的意思是这样的?

<table ng:init="stuff={items:[{description:'gadget', cost:99},{description:'thing', cost:101} ]}">
<tr>
    <th>Description</th>
    <th>Cost</th>
</tr>
<tr ng:repeat="item in stuff.items">

    <td>{{item.description}}</td>
    <td>{{item.cost}}</td>
</tr>
<tr>
    <td></td>
    <td>{{stuff.items.$sum('cost')}}</td>
</tr>

于 2013-10-03T19:33:55.500 回答