从字符串格式传递样式 HTML

Pass style from string format HTML

我想在[[ style="width:{{item.number}}" ]]

中传递参数

不是DOM请

            <div
                    class="progress-bar bg-danger"
                    role="progressbar"
                    style="width:50%"
                    aria-valuenow="50"
                    aria-valuemin="0"
                    aria-valuemax="100"
            ></div>

您可以像这样使用 ngStyle 来实现:

<div [ngStyle]="{'width.px': someVariable }"></div>

style.width ="{{ customer.type_value }}%"