asp.net mvc5 action多个参数
Posted 0x0c,0x0d
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net mvc5 action多个参数相关的知识,希望对你有一定的参考价值。
需要完成http://site.com/user/add/1/2这样的url解析
使用action的参数直接获取数据的方式
Action声明如下
public ActionResult Add(int id, int run=0) { ViewBag.clubID = id; if(run == 0) return View(); else return View(exectudeAdd(id)); }
只需要对路由进行添加即可完成
注意观察,我们需要将参数名对应到路由中,即此处的id和run,参数如上述action参数列表
context.MapRoute( "student_new", "student/{controller}/{action}/{id}/{run}", new { action = "Index", id = UrlParameter.Optional, run = UrlParameter.Optional } ); context.MapRoute( "student_default", "student/{controller}/{action}/{id}", new { action = "Index", id = UrlParameter.Optional } );
留待后查同时方便别人
2017.12.10 1:03
以上是关于asp.net mvc5 action多个参数的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Url.Action 在 asp.net core 2.0 razor 页面中传递多个操作
构建ASP.NET MVC5+EF6+EasyUI 1.4.3+Unity4.x注入的后台管理系统(55)-工作流设计-表单布局