来自服务器的Angular 6渲染图像

时间:2018-11-15 20:18:24

标签: angular6

我有一个api调用,它返回要渲染的图像的网址列表(http://localhost/api/files/getimage/4/Tulips.jpg

使用localhost渲染图像,但是使用api服务器渲染

“跨域读取阻止(CORB)阻止了MIME类型为text / html的跨域响应。有关更多详细信息,请参见https://www.chromestatus.com/feature/5629709824032768。”

如何使其工作?

    <div *ngFor="let file of fileList">
        <img src={{file}} alt={{file}} />
    </div>

1 个答案:

答案 0 :(得分:0)

 <div *ngFor="let file of fileList">
        <img src="{{file}}" alt="{{file}}" />
    </div>


 <div *ngFor="let file of fileList">
        <img [src]="file" alt="file" />
    </div>