AngularJS:当表中该列的值为空时如何显示td为空

时间:2019-03-29 11:59:47

标签: angularjs

如果前一个td为空,则下一个td值将在前一个td中显示。我已经尝试过以下方法,但是它不能解决我的问题。

<td class="errorDescription col-sm-3">
    <span ng-if="utfDataRequest.parsedValue"> {{utfDataRequest.parsedValue}}</span>
    <span ng-if="!utfDataRequest.parsedValue"></span>
</td>

1 个答案:

答案 0 :(得分:0)

您只需要放入项<td><span ng-if="utfDataRequest.parsedValue"> {{utfDataRequest.parsedValue}}</span></td>,因为如果parsedValue为空,则<span ng-if="utfDataRequest.parsedValue"> {{utfDataRequest.parsedValue}}</span>中将不显示任何内容 因此您的代码是

<td class="errorDescription col-sm-3">
    <span ng-if="utfDataRequest.parsedValue"> {{utfDataRequest.parsedValue}}</span>
</td>