如何使用角度 10 通过 *ngFor 循环 class 名称
how to loop class name by *ngFor using angular10
列类:字符串[] = ['name', 'email', 'phn', 'city', 'state', '', 'w-40'];
<td *ngFor="let col of columnClass" class="pr-20 {{col}}">
string[]
在一个component.ts中,html
在另一个component.html[=23中=]
您需要bind to the class才能在其中使用变量。
<td *ngFor="let col of columnClass" class="pr-20" [class]="col">
列类:字符串[] = ['name', 'email', 'phn', 'city', 'state', '', 'w-40'];
<td *ngFor="let col of columnClass" class="pr-20 {{col}}">
string[]
在一个component.ts中,html
在另一个component.html[=23中=]
您需要bind to the class才能在其中使用变量。
<td *ngFor="let col of columnClass" class="pr-20" [class]="col">