when template switch ngswitchcase example angularjs html-table ng-switch

angularjs - template - ng switch example angular 5



Angularjs. ng-switch no funciona dentro de una mesa (1)

¿De todos modos puedo hacer que ng-switch funcione dentro de una mesa? El ejemplo de la tabla no funciona, pero el examen ul funciona bien. El problema es que realmente necesito el ejemplo de la mesa. Estoy usando angular 1.07.

<table> <tbody ng-repeat="item in items"> <tr><td>{{ item.heading }}</td></tr> <tr ng-repeat="row in item.fields" ng-switch on="row.nb"> <div ng-switch-when="01"> <td>{{ row.nb }}</td> </div> </tr> </tbody> </table> <ul ng-repeat="item in items"> <li ng-repeat="row in item.fields" ng-switch on="row.nb"> <div ng-switch-when="01"> {{ row.nb }} </div> </li> </ul>