为什么在动态加载存在的文件时会得到404?

时间:2016-09-26 05:37:07

标签: javascript ecmascript-6 asp.net-core http-status-code-404 javascript-import

事实上我得到三个404试图加载相同的文件,但我感兴趣的那个发生在我的index.html

<script>
    System.import('app/main').catch(function (err) { console.error("IMPORT_ERR: " + err); });
</script>

记录的错误是:

IMPORT_ERR: Error: Error: XHR error (404 Not Found) loading http://localhost:57971/node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js
        at XMLHttpRequest.wrapFn [as _onreadystatechange] (http://localhost:57971/js/zone.js:647:29)
        at ZoneDelegate.invokeTask (http://localhost:57971/js/zone.js:236:37)
        at Zone.runTask (http://localhost:57971/js/zone.js:136:47)
        at XMLHttpRequest.ZoneTask.invoke (http://localhost:57971/js/zone.js:304:33)
    Error loading http://localhost:57971/node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js as "@angular/platform-browser-dynamic" from http://localhost:57971/app/main.js

然而,有问题的文件肯定存在:

PS C:\Dev\Angular2\Projects\Introduction\Code\src> ls TourOfHeroes2\node_modules\@angular\platform-browser-dynamic\bundles

    Directory: C:\Dev\Angular2\Projects\Introduction\Code\src\TourOfHeroes2\node_modules\@angular\platform-brow
    ser-dynamic\bundles

Mode                LastWriteTime         Length Name                                                          
----                -------------         ------ ----                                                          
-a----       2016/09/25   8:50 AM           4631 platform-browser-dynamic-testing.umd.js                       
-a----       2016/09/25   8:50 AM           8749 platform-browser-dynamic.umd.js                               
-a----       2016/09/25   8:50 AM           4703 platform-browser-dynamic.umd.min.js                           

文件夹TourOfHeroes2是网络应用的根目录。

1 个答案:

答案 0 :(得分:0)

事实证明,应用程序不允许请求node_modules文件夹[1]中的静态文件。我在应用程序工作之前做了很多小的更改,我将在今天晚些时候修改,但最重要的是Startup

public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
    app.UseDefaultFiles();
    app.UseStaticFiles();
    UseCustomFileServer(app, env);
}

private void UseCustomFileServer(IApplicationBuilder app, IHostingEnvironment env)
{
    // this will serve up wwwroot
    app.UseFileServer();

    // this will serve up node_modules
    var provider = new PhysicalFileProvider(Path.Combine(env.ContentRootPath, "node_modules"));
    var options = new FileServerOptions();
    options.RequestPath = "/node_modules";
    options.StaticFileOptions.FileProvider = provider;
    options.EnableDirectoryBrowsing = true;
    app.UseFileServer(options);
}

由于一些,我认为,糟糕的设计,UseStaticFiles只能提供来自一个目录的静态文件,我们需要wwwroot,所以我必须添加UseFileServer node_modules文件来源。

[1] .NET Core Web应用程序不会 - 默认情况下 - 允许提供任何静态文件。您必须将Microsoft.AspNetCore.StaticFiles包添加到project.json,然后按正确的顺序将这两行添加到Startup.Configure()

app.UseDefaultFiles();
app.UseStaticFiles();