使用RedirectToAction传递模型和参数

时间:2013-05-09 17:57:45

标签: asp.net-mvc parameters controller

我想将字符串和模型(对象)发送到另一个动作。

var hSM = new HotelSearchModel();
hSM.CityID = CityID;
hSM.StartAt = StartAt;
hSM.EndAt = EndAt;
hSM.AdultCount = AdultCount;
hSM.ChildCount = ChildCount;

return RedirectToAction("Search", new { culture = culture, hotelSearchModel = hSM });

当我使用new关键字时,它会发送null个对象,尽管我设置了对象hSm属性。

这是我的Search行动:

public ActionResult Search(string culture, HotelSearchModel hotelSearchModel)
{ 
    // ...
}

1 个答案:

答案 0 :(得分:13)

您无法使用RedirectAction发送数据。 那是因为你正在进行301重定向,然后回到客户端。

您需要将其保存在TempData中:

var hSM = new HotelSearchModel();
hSM.CityID = CityID;
hSM.StartAt = StartAt;
hSM.EndAt = EndAt;
hSM.AdultCount = AdultCount;
hSM.ChildCount=ChildCount;
TempData["myObj"] = new { culture = culture,hotelSearchModel = hSM };

return RedirectToAction("Search");

之后,您可以从TempData中再次检索:

public ActionResult Search(string culture, HotelSearchModel hotelSearchModel)
{
    var obj = TempData["myObj"];
    hotelSearchModel = obj.hotelSearchModel;
    culture = obj.culture;
}