gpt4 book ai didi

asp.net-mvc-3 - 使用 redirectAction 和 prg 模式在 Action 之间发送数据

转载 作者:行者123 更新时间:2023-12-04 22:34:32 25 4
gpt4 key购买 nike

如何使用 redirectAction 在 Action 之间发送数据?

我正在使用 PRG 模式。我想做这样的事情

[HttpGet]
[ActionName("Success")]
public ActionResult Success(PersonalDataViewModel model)
{
//model ko
if (model == null)
return RedirectToAction("Index", "Account");

//model OK
return View(model);
}

[HttpPost]
[ExportModelStateToTempData]
[ActionName("Success")]
public ActionResult SuccessProcess(PersonalDataViewModel model)
{

if (!ModelState.IsValid)
{
ModelState.AddModelError("", "Error");
return RedirectToAction("Index", "Account");
}

//model OK
return RedirectToAction("Success", new PersonalDataViewModel() { BadgeData = this.GetBadgeData });
}

最佳答案

重定向时,您只能传递查询字符串值。不是整个复杂对象:

return RedirectToAction("Success", new {
prop1 = model.Prop1,
prop2 = model.Prop2,
...
});

这仅适用于标量值。因此,您需要确保在查询字符串中包含您需要的每个属性,否则它将在重定向中丢失。

另一种可能性是将您的模型保留在服务器上的某处(例如数据库或其他东西),并且在重定向时仅传递允许检索模型的 id:
int id = StoreModel(model);
return RedirectToAction("Success", new { id = id });

并在 Success 操作中检索模型:
public ActionResult Success(int id)
{
var model = GetModel(id);
...
}

另一种可能性是使用 TempData 虽然我个人不推荐它:
TempData["model"] = model;
return RedirectToAction("Success");

并在 Success 操作中从 TempData 获取它:
var model = TempData["model"] as PersonalDataViewModel;

关于asp.net-mvc-3 - 使用 redirectAction 和 prg 模式在 Action 之间发送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10752160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com