本文介绍了如何添加背景图像使用ngStyle(angular2)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用ngStyle添加背景图像?
我的代码不工作:
How to use ngStyle to add background-image?My code doesn't work:
this.photo = 'http://dl27.fotosklad.org.ua/20121020/6d0d7b1596285466e8bb06114a88c903.jpg';
<div [ngStyle]="{'background-image': url(' + photo + ')}"></div>
推荐答案
我想你可以试试:
<div [ngStyle]="{'background-image': 'url(' + photo + ')'}"></div>
通过读取您的 ngStyle
表达式你错过了一些...
From reading your ngStyle
expression, I guess that you missed some "'"...
这篇关于如何添加背景图像使用ngStyle(angular2)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!