gpt4 book ai didi

c# - 如何从 Mvc 中的 HomeController 中删除 Home

转载 作者:行者123 更新时间:2023-12-03 04:22:49 26 4
gpt4 key购买 nike

我有一个 HomeController,里面有很多 Actions。我希望用户无需输入 Home 即可访问我的操作。这是下面的路线

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);

我希望用户不要输入 Controller 名称,在本例中为“Home”。我怎样才能做到这一点?还是强制的?

最佳答案

您可以在默认路由之前添加自定义路由,如下所示:

routes.MapRoute(
"OnlyAction",
"{action}",
new { controller = "Home", action = "Index" }
);

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);

关于c# - 如何从 Mvc 中的 HomeController 中删除 Home,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40445140/

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