gpt4 book ai didi

c# - 如何在 ASP.NET Core 中默认添加 URL 参数

转载 作者:行者123 更新时间:2023-11-30 12:22:55 26 4
gpt4 key购买 nike

我正在做一个项目,我需要从应用程序启动时的 URL 字符串访问 Windows 用户名。我试图让它在应用程序启动后立即将“?windowsusername=name”添加到 URL。如果我将它重定向到另一个操作,它会弄乱我的路由。有没有办法在启动时添加这个?我从 Startup.cs 文件传入它,我知道它正在传入,因为我可以使用 Razor 引用它。但是,它没有被添加到 URL 字符串中。这是我在 Startup.cs 文件中尝试过的内容:

app.UseStaticFiles();

app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{windowsUsername}",
defaults: new { controller = "Home", action = "Index", windowsUsername = "name" });
});

最佳答案

您应该将路线更改为以下路线:

 app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{action}/{id?}",
defaults: new { controller = "Home", action = "Index" });
}

然后在操作中,您可以从 id 访问用户名。

public ActionResult YourActionNameGoesHere(string id)
{

}

如果您点击 ControllerName/YourActionName/name,则该 ID 的值为 name

关于c# - 如何在 ASP.NET Core 中默认添加 URL 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38878982/

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