【问题标题】:How to serve SPA at host/app path with ASP.Net Core如何使用 ASP.Net Core 在主机/应用程序路径上提供 SPA
【发布时间】:2020-12-12 09:04:09
【问题描述】:

我正在使用 Angular dotnet 模板,它利用了 Spa 相关的扩展。

我需要进行哪些更改才能在localhost:5001/app 而不是localhost:5001 提供SPA?

Startup.cs 文件如下所示:

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.SpaServices.AngularCli;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;

namespace angular_dotnet
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddControllersWithViews();
            // In production, the Angular files will be served from this directory
            services.AddSpaStaticFiles(configuration =>
            {
                configuration.RootPath = "ClientApp/dist";
            });
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            // if (!env.IsDevelopment())
            // {
                app.UseSpaStaticFiles();
            // }

            app.UseRouting();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller}/{action=Index}/{id?}");
            });

            app.UseSpa(spa =>
            {
                // To learn more about options for serving an Angular SPA from ASP.NET Core,
                // see https://go.microsoft.com/fwlink/?linkid=864501

                // spa.Options.SourcePath = "ClientApp";

                /* if (env.IsDevelopment())
                {
                    spa.UseAngularCliServer(npmScript: "start");
                } */
            });
        }
    }
}

【问题讨论】:

  • 为什么要这样做?
  • 这就是角度路由
  • 你的localhost:5001/app对应的组件是什么?
  • @Rena Home 组件。我想在 /app 提供 SPA 的原因是因为我们将在 / 提供 Razor 页面网站。

标签: angular asp.net-core configuration single-page-application


【解决方案1】:

为了完成这项工作,我在 Startup.cs 的底部添加了以下内容,在整个文件中删除了所有其他与 SPA 相关的扩展名。

app.Map(new PathString("/app"), client =>
{       
    var clientPath = Path.Combine(Directory.GetCurrentDirectory(), "./ClientApp/dist");
    StaticFileOptions clientAppDist = new StaticFileOptions()
    {
        FileProvider = new PhysicalFileProvider(clientPath)
    };

         
    client.UseSpaStaticFiles(clientAppDist);
    
    client.UseSpa(spa =>
     {
         spa.Options.DefaultPageStaticFileOptions = clientAppDist;
     });                                       
});

【讨论】:

  • 这个文件夹“ClientApp”是否位于 wwwroot 内?
猜你喜欢
  • 2020-05-14
  • 2019-11-21
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-02-04
相关资源
最近更新 更多