我有这样的事情:
<ion-item>
<ion-label class="ion-text-center">{{variable}}</ion-label>
</ion-item>
我需要能够根据程序结果将 ion-item 的背景设置为介于红色和绿色之间的颜色,因此我"{'background-color':'rgb(#,#,0)'}"
在 page.ts 中生成了一个值。
当值更改时,我无法使用[ngStyle]="{'--ion-background':'rgb(#,#,0)'}"
ionic 已经将 html 扩展到其item-native
组件中。我需要能够以item-native
某种方式访问,[ngStyle]
或者类似的ng-style
东西[.item-native background]
?
还是有更简单/更好的方法来做到这一点?