MVC前后台获取ActionControllerID名方法 以及 路由规则
Posted Chris_在IT道路上前行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MVC前后台获取ActionControllerID名方法 以及 路由规则相关的知识,希望对你有一定的参考价值。
前后台获取Action、Controller、ID名方法
- 前台页面:ViewContext.RouteData.Values["Action"].ToString();//获取Action名称
ViewContext.RouteData.Values["Controller"].ToString();//获取控制器名称
ViewContext.RouteData.Values["ID"].ToString();//获取路由参数值:
- 后台页面:ControllerContext.RouteData.GetRequiredString("Action");
ControllerContext.RouteData.GetRequiredString("Controller");
ControllerContext.RouteData.GetRequiredString("id");
路由规则示例
路由规则是有优先级的,上面的优先级高。
routes.MapRoute( name: "test", url: "test1/{action}/{id}", defaults: new { controller = "Test", action = "Index", id = UrlParameter.Optional } ); routes.MapRoute( name: "datacenter", url: "data/{action}", defaults: new { controller = "DataCenter", action = "Index", id = UrlParameter.Optional } ); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } );
当访问../test1页面时会匹配到第一个路由规则,对应的控制器和行为:Test/Index。访问../test1/add时,对应Test/Add
当访问../data页面时会匹配到第二个路由规则,对应的控制器和行为:DataCenter/Index。访问../data/add时,对应DataCenter/Add
当访问../Test或../DataCenter或../时都会匹配到第三个路由规则,第三个路由规则为系统自动生成的
以上是关于MVC前后台获取ActionControllerID名方法 以及 路由规则的主要内容,如果未能解决你的问题,请参考以下文章
C# mvc+jquery post 提交 后台 action 获取不到值 值为nulll
FineUI MVC 前端获取表格Json通过Post传递后台
ajax异步请求获取后台数据,java mvc 后台应该如何封装各种实体类数据?