gpt4 book ai didi

asp.net-mvc-3 - RedirectToAction retcode 错误处理最佳实践

转载 作者:行者123 更新时间:2023-12-03 07:55:42 25 4
gpt4 key购买 nike

public ActionResult Index()
{
int retCode = Errors.SUCCESS;
var da = this.GetDataAccess();
var ids= new List<Models.Users>();

retCode = da.GetId(this.GetId(), ref ids, profiler);
return this.CheckIdForView(nRetCode, View(ids));

}

public ActionResult DeleteUser(string id)
{
var da = this.GetDataAccess();
var ids = new List<Models.Users>();
int retCode = Errors.SUCCESS;

retCode = da.DeleteId(this.GetId(), id);

return RedirectToAction("Index");
}

}

显然,在删除用户操作中,重新编码一旦重定向到索引操作就会被删除。我想知道保存这样的 retcode 的最佳做法是什么。我看过很多关于 TempData 的讨论,但这是最佳实践吗?

最佳答案

您需要在查询字符串中将其传递给 index 中的可选参数:

public ActionResult Index(int? retCode = null);

return RedirectToAction("Index", new { retCode });

关于asp.net-mvc-3 - RedirectToAction retcode 错误处理最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6764300/

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