4

我在标签中使用了 ngx-pipe 的百分比管道两次。一次确定哪个颜色类别(成功或信息),一次显示百分比。

<label class="label" [ngClass]="(item.amount |
percentage:item.total) >= 100 ? 'label-success' : 'label-info'">Progress {{item.amount | percentage:item.total:true}}%</label>

有没有一种方法可以将该管道的结果存储为本地模板变量一次,例如

<label class="label" #percent="(item.amount |
percentage:item.total)" [ngClass]="percent >= 100 ? 'label-success' : 'label-info'">Progress {{percent}}%</label>

我知道您可以将其存储在 *ngIf 或 *ngFor 指令中,例如

<div *ngIf="item$ | async as item">

或者

<div *ngIf="item$ | async; let item">

我的问题有类似的方法吗?

4

1 回答 1

1

AFAIK 现在不可能写到运行时计算绑定的别名(* ngFor with pipe 是例外),但你可以做的是。创建一个function/Pure pipe并将 memoization 应用于该函数,以便计算量减少。

<label class="label" 
  [ngClass]="getPercentage(item) >= 100 ? 'label-success' : 'label-info'">
     Progress {{getPercentage(item)}}%
</label>

零件

calculation: any = {};
percentage = new PercentPipe();
// below function can be stay as pure Pipe as well.
getPercentage (item) {
   let key = `${item.amount}-${item.total}`
   if(!calculate[key]) calculate[key] = percentage.transform(item.amount, item.total, true);
   return calculate[key];
}

通过这个解决方案,我们计算了一次价值并在其他地方使用它。但不在模板变量中,而是在组件中记住最后计算的值。

于 2018-11-09T13:48:42.817 回答