我配置了一个IIS virual目录,里面有一些照片,但我有trublle从anglar App访问,我有一个404 NOT FOUND错误。
我试图在IIS上添加4200端口的绑定,但在这种情况下,应用程序无法工作。
我已经添加了这个代码启动,但即使删除它也没有影响。
public override void AddApplicationSpecificConfigure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseFileServer(new FileServerOptions
{
FileProvider = new PhysicalFileProvider(
Path.Combine(Directory.GetCurrentDirectory(), "UploadedImages")),
RequestPath = "/StaticFiles",
EnableDirectoryBrowsing = true
});
HTML调用:
<ng-container matColumnDef="url">
<th mat-header-cell *matHeaderCellDef> Image Url </th>
<td mat-cell *matCellDef="let element"> <img [src]="element.url" /> </td>
</ng-container>