当我尝试重定向到操作时,收到的参数始终为空?我不知道为什么会这样。
ActionResult action1() {
if(ModelState.IsValid) {
// Here user object with updated data
redirectToAction("action2", new{ user = user });
}
return view(Model);
}
ActionResult action2(User user) {
// user object here always null when control comes to action 2
return view(user);
}
对此,我还有另一个疑问。当我使用路由访问操作时,我只能通过RouteData.Values["Id"]
. 路由的值不会发送到参数。
<a href="@Url.RouteUrl("RouteToAction", new { Id = "454" }> </a>
我想念任何配置吗?或任何我想念的东西。
ActionResult tempAction(Id) {
// Here Id always null or empty..
// I can get data only by RouteData.Values["Id"]
}