ngFor

时间:2018-08-06 13:48:12

标签: javascript cors angular-cli

我可以正常方式访问ng外部的外部服务器/ CDN上的图像,而不会出现问题,但是当图像出现在ngFor循环中且URL为{{i.img}}时,浏览器似乎由于以下原因而停止了图像CORS

enter image description here

所以我的问题是,尽管我了解CORS是服务器端的问题,但是由于我将Angular-CLI作为App / Executable使用,所以我会有一个配置设置,例如tsconfig.json,可以放置“ Access-Control-Allow-Origin”,以便在我进行服务时这是设置服务器端。

<!-- working -->>
<img src="https://test.com/image.jpg" />


<!-- not working -->

<div *ngFor="let i of this._pictures;" >
 <img src="{{i.img}}" />
</div>

对于任何解决方法,我将不胜感激

0 个答案:

没有答案