集中TempData成功/错误消息的最佳方法是什么?

时间:2016-10-04 20:09:26

标签: c# asp.net-mvc asp.net-mvc-5 tempdata

此时几乎每个控制器方法都会将带有TempData的成功/错误消息返回到视图,如下所示:

if (result) {
    TempData["messageSuccess"] = "Some nice success message";
} else {
    TempData["messageError"] = "Some nice error message";
}

我想在一个简单的方法中集中这个功能,这个方法可以从应用程序(控制器)的任何地方调用,那么将这个功能集中到一个可以重用的方法的最佳方法是什么?

1 个答案:

答案 0 :(得分:1)

您可以为控制器创建扩展程序。在您的一个静态UtilityClass中添加以下方法。

  public static void SetTempDataMessages(this Controller controller, bool result)
  {
     if (result) 
     {
        controller.TempData["messageSuccess"] = "Some nice success message";
     } 
     else 
     {
        controller.TempData["messageError"] = "Some nice error message";
     }
  }

然后在你的行动方法

public ActionResult Index()
{
    var result = true;
    this.SetTempDataMessages(result);
    return View();
}

您也可以将成功和错误消息作为参数传递。 (但我个人认为这是不必要的,你应该将你的TempData保存在ActionMethods中)