gpt4 book ai didi

c# - MVC 操作别名重定向

转载 作者:行者123 更新时间:2023-12-02 04:50:27 26 4
gpt4 key购买 nike

我在我的 HomeController 中有这样一个操作:

    public ActionResult HowItWorks()
{
return View();
}

如您所料,我可以通过转到 /Home/HowItWorks 来访问它。

如果我转到 /HowItWorks(省略“Home”前缀),我怎样才能让它到达同一个地方?

我知道我可以在 RouteConfig.cs 中更改它,但我想知道是否有属性或类似的东西。

最佳答案

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

你可以像上面那样做。是的,您需要将其放入 RouteConfig.cs

如果您希望所有方法都像这样工作,您可以使用以下方法:

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

但是在这种情况下,当且仅当您没有按如下方式定义自定义路由时,您才能使用单个 Controller :

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

请注意,路由的优先级很重要。即:首先匹配到的那个将被接受。

关于c# - MVC 操作别名重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18947329/

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