在表单元格中,我列出了使用ng-repeat填充的几个项目,使用下面的结构.但是,对于某些条目,诸如“user.favcolor”之类的属性是空白的.在这种情况下,最简单的方法是隐藏“喜欢的颜色:”这样的文字,这样我就不会得到一个“喜欢的颜色:”和没有价值的行?
<table> <thead> <tr> <th>Price</th> <th>Plan Contents</th> </tr> </thead> <tbody> <tr ng-repeat="tip in tips"> <td>{{tip.priceMonthly}}</td> <td><span>Name: {{user.name}}</span> <span>ID: {{user.id}}</span> <span>Favorite color: {{user.favcolor}}</span> </td> </tr> </tbody> </table>