我想将typescript变量传递给样式,我不知道它是否可行,有代码:
<tr *ngFor="let app of data">
<div class="progress_bar" style="width: {{app.applicationProgress}}%;"></div>
</tr>
我的app.applicationProgress已设置(已选中)
答案 0 :(得分:5)
使用ngStyle
指令。 Documentation
更新的代码:
<div class="progress_bar" [ngStyle]="{'width': app.applicationProgress + '%'}"></div>