次の状況を想像してください。
<div *ngFor="let d of dm; first as first">
<span
[ngClass]="{ cSmall: !first, cGray: !first, cTab1: !first }"
>
{{ d }}
</span>
</div>
これらすべての CSS クラスcSmall, cGray, cTab1
は に依存してい!first
ます。
次の範囲内で不要な繰り返しを避けることはできますか?
{ cSmall: !first, cGray: !first, cTab1: !first }
私はすでに{ [cSmall,cGray,cTab1]: !first }
成功していませんでした:)