ASP.NET MVC 3自定义操作过滤器 - 如何将传入模型添加到TempData?

时间:2011-04-11 04:06:29

标签: c# asp.net-mvc-3 model-binding tempdata custom-action-filter

我正在尝试构建一个自定义动作过滤器,它将传入的模型从过滤器上下文中删除,将其添加到tempdata,然后执行“其他内容”。

我的行动方法如下:

[HttpPost]
[MyCustomAttribute]
public ActionResult Create(MyViewModel model)
{
   // snip for brevity...
}

现在,我希望在模型绑定启动后将model添加到TempData,并将表单值集合转换为MyViewModel

我该怎么做?

public override void OnActionExecuting(ActionExecutingContext filterContext)
{
   if (!filterContext.Controller.ViewData.ModelState.IsValid)
      return;

   var model = filterContext.????; // how do i get the model-bounded object?
   filterContext.TempData.Add(someKey, model);
}

1 个答案:

答案 0 :(得分:5)

知道了 - 希望这是正确的做法:

public override void OnActionExecuting(ActionExecutingContext filterContext)
{
   if (!filterContext.Controller.ViewData.ModelState.IsValid)
      return;

   var model = filterContext.ActionParameters.SingleOrDefault(ap => ap.Key == "model").Value;
   if (model != null)
   {
      // Found the model - add it to tempdata
      filterContext.Controller.TempData.Add(TempDataKey, model);
   }
}