我正在尝试构建一个动态表,我可以在运行时决定使用哪个管道(如果有).
原文链接:https://www.f2er.com/angularjs/143478.html我正在尝试实现类似于(简化)的东西:
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>