如何正确转义 ngstyle 背景图像
how to properly escape ngstyle background-image
我不知道如何逃避这个:
<div *ngFor="let formulario of formularios" [ngStyle]="{‘background-image’ : 'url(' + imagenPath + formulario[" imagen "] + ')'}"></div>
正确的绑定是
<div
[style.background]="'url(' + path + ')'">
</div>
其中路径是正确的图像路径。
带有工作示例的简单 StackBlitz -> https://stackblitz.com/edit/angular-wunc7a
注意:问题是重复的 ->
我不知道如何逃避这个:
<div *ngFor="let formulario of formularios" [ngStyle]="{‘background-image’ : 'url(' + imagenPath + formulario[" imagen "] + ')'}"></div>
正确的绑定是
<div
[style.background]="'url(' + path + ')'">
</div>
其中路径是正确的图像路径。
带有工作示例的简单 StackBlitz -> https://stackblitz.com/edit/angular-wunc7a
注意:问题是重复的 ->