23

私は MVC プロジェクトを作成し、モデルをフィルターからビューに設定したいと考えています。

しかし、私は知りません。どうすればこれを行うことができますか。

モデル:

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

コントローラ:

[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

5 に答える 5

29
ViewResult vr = new System.Web.Mvc.ViewResult
    {
        ViewName = this.View, //<======/Test/Test.cshtml
        ViewData = new ViewDataDictionary(filterContext.Controller.ViewData)
            {
                Model = // set the model
            }
    };
于 2013-11-18T08:18:17.623 に答える
8

asp.net mvc ソースから、モデルをビュー データに設定するだけです。 http://aspnetwebstack.codeplex.com/SourceControl/latest#src/System.Web.Mvc/Controller.cs

 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
        };
    }
于 2013-11-18T08:20:44.670 に答える
5

フィルター コンテキストを変更し、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;  

このようにして、ビューは必要に応じてモデルを受け取ります。

于 2013-12-05T11:10:12.520 に答える