内联样式插值不起作用角度 9

Inline style interpolation not working angular9

我想将我的组件 属性 值传递给内联 css。

<div [ngStyle]="{ 'width': '{{ object.value }}%' }">

该方法无效并出现错误:-

 Parser Error: Got interpolation ({{}}) where expression was expected

你的语法有误。使用以下语法之一

[style.width.%]="object.value"

或者

[ngStyle]="{ 'width.%': object.value }"