2

我在 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
4

2 回答 2

3

改为使用

<div class="container-fluid project_img" [style.background]="'url(' + _project.images.web + ') no-repeat center center;'">
  </div> 
于 2016-03-24T10:59:25.263 回答
1

这就是它对我有用的方式

<div class="container-fluid project_img" attr.style.background="url({{_project.images.web}}) no-repeat center center;">
于 2016-03-24T11:07:53.583 回答