如果 table 在 AngularJs 中有超过 1 行,则只显示一列

Only display a column if a table has more than 1 row in AngularJs

我正在使用 ng-repeat 指令在 AngularJs 中显示 table。

如果 table 只有一行,我不想显示名为“objective”的列。有没有办法找到 table 中的行数,如果行数等于 1 则不显示列?

谢谢。

您可以使用 ng-if 并检查您在 ng-repeat 中迭代的数组的长度,如果长度大于 1,则只显示列和数据。类似于:

<table>
    <thead>
        ...
        <th ng-if="array.length > 1">Objective</th>
    </thead>
    <tbody>
        <tr ng-repeat="item in array">
            ...
            <td ng-if="array.length > 1">{{ item.objective }}</td>
        </tr>
    </tbody>
</table>

如果您分享您的一些代码,我可以更新我的答案以反映它。