gpt4 book ai didi

c# MVC 5 RouteConfig 重定向

转载 作者:行者123 更新时间:2023-11-30 12:42:33 24 4
gpt4 key购买 nike

最近我不得不更新我的 mvc web 应用程序,以便系统的基本实体以不同的文字显示在 UI 中。

让我们说

以前我有:“容器”

现在我被要求制作它:“Ships”

按照约定映射的 url:mysite/{controller}/{action}/{id}

所以我有这样的网址:

mysite/Vessels/Record/1023 

mysite/Vessels/CreateVessel

我在用户界面中进行了所有重命名,以便标题和标签从 Vessel 更改为 Ship,现在我还被要求处理 url。

现在,我不想重命名 Controller 名称或 ActionResult 方法名称,因为这是一些繁重的重构,而且很可能,文字很快将需要再次更改...;-)

是否有任何快速解决方案,只需编辑 RouteConfig 或类似的东西,只需几行代码即可完成工作?

最佳答案

是的,只需注册将映射您的 VesselsController 操作的路由:

public class MvcApplication : System.Web.HttpApplication
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
"Vessels", // Route name
"Ship/{action}Ship/{id}", // URL with parameters
new { controller = "Vessel", id = "" } // Parameter defaults
);

routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);

}

protected void Application_Start()
{
RegisterRoutes(RouteTable.Routes);
}
}

还要确保在默认路线之前注册您的路线。因为,在其他情况下,默认路由将首先执行,您将得到一个异常,因为您的应用程序中没有定义 ShipController

关于c# MVC 5 RouteConfig 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33230118/

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