Angularjs:如何使用ng-class或ng-if显示Empty列?

时间:2016-03-13 13:39:25

标签: angularjs twitter-bootstrap html-table ng-class

我有大约15行,其中7列显示为表格,在每几行之后,我将根据特定的分组和业务逻辑显示一个空行。为了标记相同的 - 每列显示整行。

现在我想要显示一个空列或只是一个空格来隔离上一行和下一行哪里有一个---,我怎么能用ng-classng-if来做?我正在使用bootstrap。以下是我的工作代码

 <tr ng-repeat="row in ctrl.rows" class="myclass">                                            
   <td ng-repeat="col in row" ng-bind="col"></td>
 </tr>

试过像

这样的东西
<td ng-repeat="col in row" ng-bind="col" ng-class="{col == '---': 'col-sm-1'}"></td> //it didnt work

请帮忙!

1 个答案:

答案 0 :(得分:1)

试试这个。您的ng-class语法不正确。

 <td ng-repeat="col in row" ng-bind="col" ng-class="{'col-sm-1': col == '---'}"></td>