【发布时间】:2013-10-12 12:27:03
【问题描述】:
我们知道,一个路由映射在Global.asax文件中,比如:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
有一个方法/类,我可以通过提供路由名称来访问路由 url 属性名称?
例如,对于Default,我想调用类似
public object[] GetRoutePropertiesByName(string name) {
// process here the `controller`, `action`, `id` // there might be also other values
}
【问题讨论】:
-
查看this question。
RouteInfo类提供基于 url 的路由信息。
标签: c# asp.net-mvc