gpt4 book ai didi

c# - ASP.NET Core 3 MVC 路由参数不起作用

转载 作者:行者123 更新时间:2023-12-04 13:17:21 25 4
gpt4 key购买 nike

感觉我在这里做了一些愚蠢的事情,我正在玩 ASP.NET Core 3 (MVC),做一些教程,熟悉 - 我遇到了一些特别是路由问题。

我的 Startup.cs 中有以下代码试图设置 Main/Home/{team} 的路径。

    public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews(mvc => mvc.EnableEndpointRouting = true)
.AddNewtonsoftJson(options =>
options.SerializerSettings.ContractResolver = new DefaultContractResolver()
)
.AddRazorRuntimeCompilation();
services.AddKendo();
}

// 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.UseBrowserLink();
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
}
app.UseStaticFiles();

app.UseRouting();

app.UseAuthorization();

app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();

endpoints.MapControllerRoute(
name: "team",
pattern: "Main/Home/{team}");

//endpoints.MapControllerRoute(
// name: "default",
// pattern: "{controller=Main}/{action=Home}/{id?}");
});
}

在我的 Controller 上。 Home 操作有一个参数 team

public class MainController : Controller
{
private readonly ILogger<MainController> _logger;

public MainController(ILogger<MainController> logger)
{
_logger = logger;
}

public IActionResult Home(string team)
{

TeamModel model = new TeamModel(team);
return View(model);
}
}

无论我做什么,我都无法让 team 参数作为路由值正确通过。下面的配置每次都给我一个 404,无论 URL (/Main/Home/MyTeam 还是 /Main/Home?team=MyTeam).其他情况要么给我上述问题,要么 team 参数通过 null 值..

任何帮助都会很棒 - 我认为我可能在做一些愚蠢的事情!

最佳答案

您添加端点的方式没有将为该路由调用的 Controller 和操作。

你可以这样做:

app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();

endpoints.MapControllerRoute(
name: "team",
pattern: "Main/Home/{team?}",
defaults: new { controller = "Main", action = "Home" });

//endpoints.MapControllerRoute(
// name: "default",
// pattern: "{controller=Main}/{action=Home}/{id?}");
});

关于c# - ASP.NET Core 3 MVC 路由参数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59131583/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com