MVC中路由名称的意义4

时间:2013-10-11 11:09:54

标签: c# asp.net-mvc-4 visual-studio-2012 routing .net-4.5

我正在查看MVC的Routing概念,特别是以下行:

routes.MapRoute(
 "Default", // Route name
 "{controller}/{action}/{id}", // Route Pattern
 new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Default values.
 );

一切都很好,但我没有得到Route Name的重要性。

那里只是一词吗?或者有什么重要的吗?

我是否缺少使用它或MVC 4中使用的位置在哪里?

提前致谢。

1 个答案:

答案 0 :(得分:5)

Am I missing using it or where are the places it is used in MVC 4 ?

有使用路径名称的Helper方法。

例如,请参阅RouteLinkRouteUrl方法: