我想在我的网页中有条件地显示值或无穷大符号。
我想做这样的事情......
<td class="rs-table-text" ng-if="batch.est_completion_time ">{{batch.est_completion_time}}</td>
那是if batch.est_completion_time is not empty then display whatever is coming from json
。
json
看起来像:
{
"batch_queue_name": "Batch Five",
"start_date": "05/01/2017 12:18 A.M.",
"end_date": "08/01/2017 03:37 A.M.",
"est_completion_time":"∞",
"completion_status": "42"
}
但是it does not display the infinity symbol. Rather , it displays the ∞ text only.
如何实现同样的目标?
答案 0 :(得分:1)