我有大约15行,其中7列显示为表格,在每几行之后,我将根据特定的分组和业务逻辑显示一个空行。为了标记相同的 - 每列显示整行。
现在我想要显示一个空列或只是一个空格来隔离上一行和下一行哪里有一个---,我怎么能用ng-class
或ng-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
请帮忙!
答案 0 :(得分:1)
试试这个。您的ng-class语法不正确。
<td ng-repeat="col in row" ng-bind="col" ng-class="{'col-sm-1': col == '---'}"></td>