因此,我有一个从锚点调用的动作,Site/Controller/Action/ID
,其中 ID
是 int
。
稍后我需要从控制器重定向到相同的操作。
有没有聪明的方法来做到这一点?目前我将 ID
存储在 tempdata 中,但是当您在返回后按 f5 再次刷新页面时,tempdata 消失并且页面崩溃。
您可以将 id 作为 RedirectToAction() 方法的 routeValues 参数的一部分传递。
return RedirectToAction("Action", new { id = 99 });
这将导致重定向到站点/控制器/操作/99。不需要临时或任何类型的视图数据。
根据我的研究,Kurt's answer 应该是正确的,但是当我尝试它时,我必须这样做才能让它真正为我工作:
return RedirectToAction( "Main", new RouteValueDictionary(
new { controller = controllerName, action = "Main", Id = Id } ) );
如果我没有在 RouteValueDictionary
中指定控制器和操作,它就不起作用。
同样,当这样编码时,第一个参数(Action)似乎被忽略了。所以如果你只是在 Dict 中指定控制器,并期望第一个参数指定 Action,它也不起作用。
如果您稍后再来,请先尝试 Kurt 的回答,如果您仍有问题,请尝试此问题。
controller
参数是可选的。
RedirectToAction
带参数:
return RedirectToAction("Action","controller", new {@id=id});
new {id = id}
也可以正常工作,因为框架知道您指的是哪个变量。
还值得注意的是,您可以传递超过 1 个参数。 id 将用于构成 URL 的一部分,任何其他的都将在 ? 之后作为参数传递。在 url 中,并将默认为 UrlEncoded。
例如
return RedirectToAction("ACTION", "CONTROLLER", new {
id = 99, otherParam = "Something", anotherParam = "OtherStuff"
});
所以网址是:
/CONTROLLER/ACTION/99?otherParam=Something&anotherParam=OtherStuff
然后可以由您的控制器引用这些:
public ActionResult ACTION(string id, string otherParam, string anotherParam) {
// Your code
}
//How to use RedirectToAction in MVC
return RedirectToAction("actionName", "ControllerName", routevalue);
例子
return RedirectToAction("Index", "Home", new { id = 2});
MVC 4 示例...
请注意,您不必总是传递名为 ID 的参数
var message = model.UserName + " - thanks for taking yourtime to register on our glorious site. ";
return RedirectToAction("ThankYou", "Account", new { whatever = message });
和,
public ActionResult ThankYou(string whatever) {
ViewBag.message = whatever;
return View();
}
当然,如果这是您的偏好,您可以将字符串分配给模型字段,而不是使用 ViewBag。
如果您的参数恰好是一个复杂对象,this solves the problem。关键是 RouteValueDictionary
构造函数。
return RedirectToAction("Action", new RouteValueDictionary(Model))
如果您碰巧有集合,那就有点棘手了,but this other answer covers this very nicely。
RedirectToAction("Action", "Controller" ,new { id });
为我工作,不需要做new{id = id}
我重定向到同一个控制器内,所以我不需要 "Controller"
但我不确定当控制器需要作为参数时背后的特定逻辑。
RedirectToAction("Action", "Controller", new { id = id});
正是我在 Core 3.1 应用程序中所需要的。
如果有人想为 [httppost]
显示错误消息,那么他/她可以尝试通过传递一个 ID 使用
return RedirectToAction("LogIn", "Security", new { @errorId = 1 });
对于这样的细节
public ActionResult LogIn(int? errorId)
{
if (errorId > 0)
{
ViewBag.Error = "UserName Or Password Invalid !";
}
return View();
}
[Httppost]
public ActionResult LogIn(FormCollection form)
{
string user= form["UserId"];
string password = form["Password"];
if (user == "admin" && password == "123")
{
return RedirectToAction("Index", "Admin");
}
else
{
return RedirectToAction("LogIn", "Security", new { @errorId = 1 });
}
}
希望它工作正常。
....
int parameter=Convert.ToInt32(Session["Id"].ToString());
....
return RedirectToAction("ActionName", new { Id = parameter });
我也有这个问题,如果你在同一个控制器中,一个很好的方法是使用命名参数:
return RedirectToAction(actionName: "Action", routeValues: new { id = 99 });
如果您需要重定向到控制器外部的操作,这将起作用。
return RedirectToAction("ACTION", "CONTROLLER", new { id = 99 });
这可能是几年前的事了,但无论如何,这也取决于您的 Global.asax 地图路线,因为您可以添加或编辑参数以适应您的需求。
例如。
全球.asax
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
//new { controller = "Home", action = "Index", id = UrlParameter.Optional
new { controller = "Home", action = "Index", id = UrlParameter.Optional,
extraParam = UrlParameter.Optional // extra parameter you might need
});
}
那么您需要传递的参数将更改为:
return RedirectToAction( "Main", new RouteValueDictionary(
new { controller = controllerName, action = "Main", Id = Id, extraParam = someVariable } ) );
这行代码就可以做到:
return Redirect("Action"+id);
以下使用 asp.net core 2.1 成功。它可能适用于其他地方。字典 ControllerBase.ControllerContext.RouteData.Values 可以从操作方法中直接访问和写入。也许这是其他解决方案中数据的最终目的地。它还显示了默认路由数据的来源。
[Route("/to/{email?}")]
public IActionResult ToAction(string email)
{
return View("To", email);
}
[Route("/from")]
public IActionResult FromAction()
{
ControllerContext.RouteData.Values.Add("email", "mike@myemail.com");
return RedirectToAction(nameof(ToAction));
// will redirect to /to/mike@myemail.com
}
[Route("/FromAnother/{email?}")]`
public IActionResult FromAnotherAction(string email)
{
return RedirectToAction(nameof(ToAction));
// will redirect to /to/<whatever the email param says>
// no need to specify the route part explicitly
}
您也可以像这样发送任何 ViewBag、ViewData..
return RedirectToAction("Action", new { Dynamic = ViewBag.Data= "any data" });
Return RedirectToAction("Action", "Controller", New With {.id = 99})