我有一张垫子桌:
<ng-container matColumnDef="quantity">
<th mat-header-cell *matHeaderCellDef> Operation </th>
<td mat-cell *matCellDef="let element" class='operation' [innerHTML]='quantity(element.quantity)'>
</td>
</ng-container>
表组件.ts
quantity(numbers: number[]) : any {
return this.sanitizer.bypassSecurityTrustHtml(
numbers.map(n => n > 0
? `<span class="add">+ ${n}</span>`
: `<span class="remove"> ${n}</span>`
).join('<br />'));
}
表组件.scss
span.add {
color: green !important;
}
span.remove {
color: rgb(216, 0, 0) !important;
}
表格本身的最终结果:
我究竟做错了什么?
编辑:
好的,我发现问题出在模拟封装上。(我不想禁用)。如果我在组件模板中添加一个正常的跨度,它就可以正常工作,因为它看起来像这样:
我最初使用这种方法是因为某些单元格可以有很多项目,并且生成约 200(x 5 行)跨度的 ngFor 速度很慢(渲染表格需要约 2 秒)。所以我要么让 ngFor 更快,要么尝试让样式工作。