在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
首先我觉得action的跳转大致可以这样归一下类,跳转到同一控制器内的action和不同控制器内的action、带有参数的action跳转和不带参数的action跳转。 一、RedirectToAction("Index");//一个参数时在本Controller下,不传入参数。 二、RedirectToAction(ActionName,ControllerName) //可以直接跳到别的Controller. 三、RedirectToRoute(new {controller="Home",action="Index"});//可跳到其他controller 四、RedirectToRoute(new {controller="Home",action="Index", id=param});//可跳到其他controller,带参数。 五、Response.Redirect("Index?id=1");//适用于本controller下的方法名称,可带参数。 七、return View("Index"); //直接显示对应的页面 不经过执行Controller的方法。
今天在做一个功能的时,使用RedirectToAction()需要从这里传几个参数,从网上查了一下,这样解决。真好。 Return RedirectToAction("Index","ManageInfo",new{type=0,page=1}); 首先我觉得action的跳转大致可以这样归一下类,跳转到同一控制器内的action和不同控制器内的action、带有参数的action跳转和不带参数的action跳转。 一、RedirectToAction("Index");//一个参数时在本Controller下,不传入参数。 二、RedirectToAction(ActionName,ControllerName) //可以直接跳到别的Controller. 三、RedirectToRoute(new {controller="Home",action="Index"});//可跳到其他controller 四、RedirectToRoute(new {controller="Home",action="Index", id=param});//可跳到其他controller,带参数。 五、Response.Redirect("Index?id=1");//适用于本controller下的方法名称,可带参数。 七、return View("Index"); //直接显示对应的页面 不经过执行Controller的方法。
今天在做一个功能的时,使用RedirectToAction()需要从这里传几个参数,从网上查了一下,这样解决。真好。 Return RedirectToAction("Index","ManageInfo",new{type=0,page=1}); |
请发表评论