0

我正在 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";
}

我的视图是空的,因为我使用的是视图数据而不是模型。

4

1 回答 1

1

既然TempData会返回一个,object你应该尝试把它扔回去。

控制器

public ActionResult About()
{
    var model = (TempData["Model"] as CustomerBookingModel)
                ?? new CustomerBookingModel();

    return View(model);
}

关于.cshtml

@model CustomerBookingModel

@Html.DisplayForModel();

DisplayTemplates/CustomerBookingModel.cshtml

@model CustomerBookingModel

<div>
    @Html.LabelFor(m => m.SomeProperty)
    <p>@Model.SomeProperty</p>
</div>
于 2013-07-10T12:07:17.423 回答