我使用 *ngfor在屏幕上显示数据。我想设置div的宽度取决于列表。perc值。我使用了以下代码。但是,它是不安全的错误。
<ion-list no-lines *ngFor="let list of display;let i=index;" >
<div style="width:{{list.perc}};height:10px"></div>
<ion-item><p style="color: #9DA4AB;">percentage {{list.perc}}</p></ion-item>
</ion-list>
我该如何实现。
请建议..
使用ngstyle进行样式。
[style.width]="list.perc+'%'"
希望它会有所帮助