如何混合使用ng-repeat& ng-if on td

时间:2016-07-13 15:35:29

标签: javascript html angularjs

我期待在td上混合ng-repeatng-if的方法

在:

<tr ng-repeat="item in $ctrl.items">
    <td>{{ item.A }}</td>
    <td>{{ item.B }}</td>
    <td ng-if="condition">//other template here</td>
    <td>{{ item.D }}</td>
</tr>

我有一些像这样的表模板。我想创建一个可重用的表组件,其中表由行和&amp;列的元。像这样:

<tr ng-repeat="row in $ctrl.rows">
  <td ng-repeat="col in $ctrl.columns">

  </td>
</tr>

但我不知道如何结合两种语法,因为我无法将<div>放在td内添加ng-if

0 个答案:

没有答案