我在Edge中遇到此错误但在chrome中一切都很好 无法理解这里有什么问题...
<div class="container-fluid project_img" style="background: url({{_project.images.web}}) no-repeat center center;">
</div>
Microsoft Edge中的错误:
Assignment to read-only properties is not allowed in strict mode in [background: url({{_project.images.web}}) no-repeat center center; in ProjectDetailComponent
答案 0 :(得分:2)
改为使用
<div class="container-fluid project_img" [style.background]="'url(' + _project.images.web + ') no-repeat center center;'">
</div>
答案 1 :(得分:0)
这就是我的工作方式
<div class="container-fluid project_img" attr.style.background="url({{_project.images.web}}) no-repeat center center;">