【发布时间】: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