2

Edge でこのエラーが発生していますが、クロムではすべて問題ありません ここで何が問題なのか理解できません...

<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 に答える