在一个表格单元格中,我使用下面的结构列出了使用 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>