MVC, как заставить модель использовать ViewResult в фильтре

Я делаю проект MVC, и я хочу установить модель в представление из фильтра.

Но я не знаю, как я могу это сделать.

модель:

public class TestModel
{
    public int ID { get; set; }
    public string Name { get; set; }
}

Contorller:

[CustomFilter(View = "../Test/Test")]//<===/Test/Test.cshtml
public ActionResult Test(TestModel testModel)//<===Model from Page
{
      //the Model has Value!!
       // if has some exception here
        return View(model);//<=====/Test/Test.cshtml
}

фильтр (просто демо):

public override void OnActionExecuting(ActionExecutingContext filterContext){
     ViewResult vr = new System.Web.Mvc.ViewResult()
     {
            ViewName = this.View,//<======/Test/Test.cshtml
            ViewData = filterContext.Controller.ViewData                             
      };
      //How can I set Model here?!!
      vr.Model = ???? //<========the Model is only get
      filterContext.Result = vr;
}

Редактировать начало спасибо за @Richard Szalay @Zabavsky @James @spaceman

фильтр изменений распространяется на HandleErrorAttribute

  ViewResult vr = new System.Web.Mvc.ViewResult()
     {
            ViewName = this.View,//<======/Test/Test.cshtml
            ViewData = new ViewDataDictionary(filterContext.Controller.ViewData)
            {
                //I want get testModel from Action's paramater
                //the filter extends HandleErrorAttribute
                Model = new { ID = 3, Name = "test" }// set the model
            }                             
      };

Изменить конец

Тест /Test.chtml

@model TestModel
<h2>Test</h2>
@Model //<=====model is null

когда я прошу

http://localhost/Test/Test?ID=3&Name=4

Тестовая страница не может получить модель.

4 ответа

ViewResult vr = new System.Web.Mvc.ViewResult
    {
        ViewName = this.View, //<======/Test/Test.cshtml
        ViewData = new ViewDataDictionary(filterContext.Controller.ViewData)
            {
                Model = // set the model
            }
    };

Из источника asp.net mvc они просто устанавливают модель в представлении данных. http://aspnetwebstack.codeplex.com/SourceControl/latest

 protected internal virtual ViewResult View(string viewName, string masterName, object model)
    {
        if (model != null)
        {
            ViewData.Model = model;
        }

        return new ViewResult
        {
            ViewName = viewName,
            MasterName = masterName,
            ViewData = ViewData,
            TempData = TempData,
            ViewEngineCollection = ViewEngineCollection
        };
    }

Вы можете изменить контекст фильтра и установить View, Model, ViewData и все, что вы хотите. Вы должны принять во внимание некоторые вещи:

// You can specify a model, and some extra info, like ViewBag:
ViewDataDictionary viewData = new ViewDataDictionary
{
    Model = new MyViewModel
    {
        ModelProperty = ...,
        OtherModelProperty = ...,
        ...
    } 
};

// You can take into account if it's a partial or not, to return a View 
// or Partial View (casted to base, to set the remaining data):
ViewResultBase result = filterContext.IsChildAction
    ? new PartialViewResult()
    : (ViewResultBase) (new ViewResult());

// Set the remaining data: Name of the View, (if in Shared folder) or
// Relative path to the view file with extension, like "~/Views/Misc/AView.cshtml"
result.ViewName = View;                     
result.ViewData = viewData;     // as defined above

// Set this as the result
filterContext.Result = result;  

Таким образом, ваш вид получит модель по желанию.

Свойство модели на самом деле является просто ViewDataDictionary, вы можете инициализировать его экземпляр с вашей фактической моделью, т.е.

vr.Model = new ViewDataDictionary(model);

Вы можете получить контроллер из контекста фильтра и использовать метод View на контроллере, например:

filterContext.Result = (filterContext.Controller as Controller).View(model);
Другие вопросы по тегам