我已经阅读NgStyle Documentation For Angular 2,这对我来说有点困惑。如何在条件类似(if ... else)的情况下使用NgStyle来设置任何元素的背景图片?

最佳答案

ngStyle绑定(bind)内使用三元运算符将作为if / else条件。

<div [ngStyle]="{'background-image': 'url(' + value ? image : otherImage + ')'}"></div>

关于angular - 将[NgStyle]与条件结合起来(if..else),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37051496/

10-11 02:35