通过模型和参数与RedirectToAction(passing model and paramet

2019-09-02 09:29发布

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

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)
{ 
    // ...
}

Answer 1:

你不能用一个发送数据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;
}


文章来源: passing model and parameter with RedirectToAction