如何在AngularJS中显示无穷大符号

时间:2017-01-06 12:47:04

标签: angularjs json

我想在我的网页中有条件地显示值或无穷大符号。

我想做这样的事情......

<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":"&infin;",
  "completion_status": "42"
}

但是it does not display the infinity symbol. Rather , it displays the &infin; text only.

如何实现同样的目标?

1 个答案:

答案 0 :(得分:1)

在控制器中,准备如下数据: $ scope.est_completion_time = $ sce.trustAsHtml(batch.est_completion_time); 在HTML中,您可以按原样显示它。不要忘记在外部DOM元素中添加ng-bind-html。 仅添加ng-bind-html可以完成这项工作: NG-绑定-HTML = “batch.est_completion_time”