我正在 MVC 4 中编写一个简单的预订系统。当使用表单提交预订时,我想重定向到下一页,但我想传递我的模型数据。
[HttpPost]
public ActionResult Index(CustomerBookingModel CustomerBooking)
{
if (ModelState.IsValid)
{
switch (CustomerBooking.Cancellation)
{
case true:
//TODO: Data layer method for cancellation
CustomerBooking.ActionStatus = StatusCode.Cancelled.ToString();
break;
case false:
//TODO: Data layer method for making a booking in DB
CustomerBooking.ActionStatus = StatusCode.Booked.ToString();
break;
}
TempData["Model"] = CustomerBooking;
return RedirectToAction("About");
}
else
{
return View();
}
}
如果我的模型有效,我会根据预订状态做一些逻辑。然后我填充我想在 ActionMethod 中访问的 TempData。
public ActionResult About()
{
if (TempData["Model"] != null)
{
var model = TempData["Model"];
return View(model);
}
return View();
}
在视图中显示这些数据的好方法是什么?
@ViewData["Model"]
@{
ViewBag.Title = "About";
}
我的视图是空的,因为我使用的是视图数据而不是模型。