如果前一个td为空,则下一个td值将在前一个td中显示。我已经尝试过以下方法,但是它不能解决我的问题。
<td class="errorDescription col-sm-3">
<span ng-if="utfDataRequest.parsedValue"> {{utfDataRequest.parsedValue}}</span>
<span ng-if="!utfDataRequest.parsedValue"></span>
</td>
答案 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>