5

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

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

一切都很好,但我不明白Route Name.

它只是一个术语吗?或者有什么重要的吗?

我错过了使用它还是在 MVC 4 中使用它的地方在哪里?

提前致谢。

4

1 回答 1

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

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

例如,参见RouteLinkRouteUrl方法:

于 2013-10-11T11:24:55.530 回答