angular – 使用管道名称/元数据在运行时调用管道

前端之家收集整理的这篇文章主要介绍了angular – 使用管道名称/元数据在运行时调用管道前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试构建一个动态表,我可以在运行时决定使用哪个管道(如果有).

我正在尝试实现类似于(简化)的东西:

export class CellModel {
     public content: any;
     public pipe: string
}

<tbody>
     <tr *ngFor="let row of data">
         <template ngFor let-cell [ngForOf]=row>
           <td *ngIf="cell.pipe">{{cell.content | cell.pipe}}</td>
           <td *ngIf="!cell.pipe">{{cell.content}}</td>
     </tr>
</tbody>

我知道这个例子给出了一个错误.我可以使用Reflect是某种方式还是其他解决方案?

您无法动态应用管道.你可以做的是建立一个“元”管道,决定要做什么转换.
@Pipe({
  name: 'Meta'
})
class MetaPipe implements PipeTransform {
  transform(val,pipes:any[]) {
    var result = val;
    for(var pipe of pipes) {
      result = pipe.transform(result);
    }
    return result;
  }
}

然后像使用它一样

<td *ngIf="cell.pipe">{{cell.content | Meta:[cell.pipe]}}</td>
原文链接:https://www.f2er.com/angularjs/143478.html

猜你在找的Angularjs相关文章