如何将Css
类作为数组对象传递到.ts文件并绑定到
component.html文件。See in the image className,I want component.css
create class bind with this and use in component.html like {{item.className}}
答案 0 :(得分:0)
您可以通过 [ngClass] 对此进行存档,这是示例
<div *ngFor="let data of ArrayObj; let i = index">
<div [ngClass]="data.className">
</div>
</div>