如何正确逃脱ngstyle背景图片

时间:2019-03-05 11:44:19

标签: angular ionic2 ionic3

我不知道该如何逃脱:

<div *ngFor="let formulario of formularios" [ngStyle]="{‘background-image’ : 'url(' + imagenPath + formulario[" imagen "] + ')'}"></div>

1 个答案:

答案 0 :(得分:3)

正确的绑定将会

<div
  [style.background]="'url(' + path + ')'">
</div>

其中path是正确的图像路径。

带有工作示例的简单StackBlitz-> https://stackblitz.com/edit/angular-wunc7a

注意:问题是重复的-> How to set Angular 4 background image?