75

RedirectToAction下面,我想传递一个viewmodel. 如何将模型传递给重定向?

我设置了一个断点来检查模型的值,以验证模型是否正确创建。这是正确的,但生成的视图不包含模型属性中的值。

//
// model created up here...
//
return RedirectToAction("actionName", "controllerName", model);

ASP.NET MVC 4 RC

4

2 回答 2

127

RedirectToAction向客户端浏览器返回 302 响应,因此浏览器将对到达浏览器的响应的 location 标头值中的 url 发出新的 GET 请求。

如果您尝试将简单的精益平面视图模型传递给第二个操作方法,则可以使用该方法的此重载RedirectToAction

protected internal RedirectToRouteResult RedirectToAction(
    string actionName,
    string controllerName,
    object routeValues
)

RedirectToAction会将传递的对象(r​​outeValues)转换为查询字符串并将其附加到 url(从我们传递的前 2 个参数生成),并将生成的 url 嵌入到响应的位置标头中

假设您的视图模型是这样的

public class StoreVm
{
    public int StoreId { get; set; }
    public string Name { get; set; }
    public string Code { set; get; } 
}

而你在你的第一个动作方法中,你可以将 this 的一个对象传递给这样的RedirectToAction方法

var m = new Store { StoreId =101, Name = "Kroger", Code = "KRO"};
return RedirectToAction("Details","Store", m);

此代码将向浏览器发送 302 响应,其位置标头值为

Store/Details?StoreId=101&Name=Kroger&Code=KRO

假设您的Details操作方法的参数是 type StoreVm,查询字符串参数值将正确映射到参数的属性。

public ActionResult Details(StoreVm model)
{
  // model.Name & model.Id will have values mapped from the request querystring
  // to do  : Return something. 
}

以上将适用于通过小型平面视图模型。但是如果你想传递一个复杂的对象,你应该尝试遵循 PRG 模式。

PRG模式

PRG 代表POST - REDIRECT - GET。使用这种方法,您将在查询字符串中发出具有唯一 id 的重定向响应,第二个 GET 操作方法可以使用该响应再次查询资源并将某些内容返回给视图。

int newStoreId=101;
return RedirectToAction("Details", "Store", new { storeId=newStoreId} );

这将创建 urlStore/Details?storeId=101 并在您的详细信息GET操作中,使用传入的 storeId,您StoreVm将从某处获取/构建对象(从服务或查询数据库等)

public ActionResult Details(string storeId)
{
   // from the storeId value, get the entity/object/resource
   var store = yourRepo.GetStore(storeId);
   if(store!=null)
   {
      // Map the the view model
      var storeVm = new StoreVm { Id=storeId, Name=store.Name,Code=store.Code};
      return View(storeVm);
   }
   return View("StoreNotFound"); // view to render when we get invalid store id
}

临时数据

遵循PRG 模式是处理此用例的更好解决方案。但是如果你不想这样做并且真的想在无状态 HTTP请求中传递一些复杂的数据,你可以使用一些临时存储机制,比如TempData

TempData["NewCustomer"] = model;
return RedirectToAction("Index", "Users");

GET并再次在您的 Action 方法中阅读它。

public ActionResult Index()
{      
  var model=TempData["NewCustomer"] as Customer
  return View(model);
}

TempData使用Session场景背后的对象来存储数据。但是一旦读取数据,数据就会终止。

Rachel 写了一篇很好的博客文章,解释了何时使用 TempData /ViewData。值得一读。

在 Asp.Net Core 中使用 TempData 将模型数据传递给重定向请求

在 Asp.Net 核心中,您不能在 TempData 中传递复杂类型。您可以传递简单的类型,如,string等。intGuid

如果您绝对想通过 TempData 传递复杂类型的对象,您有 2 个选项。

1)将您的对象序列化为字符串并传递它。

这是一个使用 Json.NET 将对象序列化为字符串的示例

var s = Newtonsoft.Json.JsonConvert.SerializeObject(createUserVm);
TempData["newuser"] = s;
return RedirectToAction("Index", "Users");

现在在您的Index操作方法中,从 TempData 读取此值并将其反序列化为您的CreateUserViewModel类对象。

public IActionResult Index()
{
   if (TempData["newuser"] is string s)
   {
       var newUser = JsonConvert.DeserializeObject<CreateUserViewModel>(s);
       // use newUser object now as needed
   }
   // to do : return something
}

2) 将简单类型的字典设置为 TempData

var d = new Dictionary<string, string>
{
    ["FullName"] = rvm.FullName,
    ["Email"] = rvm.Email;
};
TempData["MyModelDict"] = d;
return RedirectToAction("Index", "Users");

稍后阅读

public IActionResult Index()
{
   if (TempData["MyModelDict"] is Dictionary<string,string> dict)
   {
      var name = dict["Name"];
      var email =  dict["Email"];
   }
   // to do : return something
}
于 2012-06-26T14:15:03.853 回答
0

另一种方法是将其存储在会话中。

var s = JsonConvert.SerializeObject(myView);
HttpContext.Session.SetString("myView", s);

并把它拿回来

string s = HttpContext.Session.GetString("myView");
myView = JsonConvert.DeserializeObject<MyView>(s);
于 2021-08-03T16:28:45.460 回答