web-dev-qa-db-ja.com

サブタイプをバインドするMVC 3モデル(抽象クラ​​スまたはインターフェイス)

Productモデルがあるとします。ProductモデルにはProductSubType(抽象)のプロパティがあり、2つの具体的な実装ShirtとPantsがあります。

ソースは次のとおりです。

 public class Product
 {
    public int Id { get; set; }

    [Required]
    public string Name { get; set; }

    [Required]
    public decimal? Price { get; set; }

    [Required]
    public int? ProductType { get; set; }

    public ProductTypeBase SubProduct { get; set; }
}

public abstract class ProductTypeBase { }

public class Shirt : ProductTypeBase
{
    [Required]
    public string Color { get; set; }
    public bool HasSleeves { get; set; }
}

public class Pants : ProductTypeBase
{
    [Required]
    public string Color { get; set; }
    [Required]
    public string Size { get; set; }
}

ユーザーインターフェイスにはドロップダウンがあり、製品タイプを選択できます。入力要素は正しい製品タイプに従って表示されます。私はこれをすべて把握しました(ドロップダウンの変更でajaxを使用し、パーシャル/エディターテンプレートを返し、それに応じてjquery検証を再設定します)。

次に、ProductTypeBaseのカスタムモデルバインダーを作成しました。

 public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
 {

        ProductTypeBase subType = null;

        var productType = (int)bindingContext.ValueProvider.GetValue("ProductType").ConvertTo(typeof(int));

        if (productType == 1)
        {
            var shirt = new Shirt();

            shirt.Color = (string)bindingContext.ValueProvider.GetValue("SubProduct.Color").ConvertTo(typeof(string));
            shirt.HasSleeves = (bool)bindingContext.ValueProvider.GetValue("SubProduct.HasSleeves").ConvertTo(typeof(bool));

            subType = shirt;
        }
        else if (productType == 2)
        {
            var pants = new Pants();

            pants.Size = (string)bindingContext.ValueProvider.GetValue("SubProduct.Size").ConvertTo(typeof(string));
            pants.Color = (string)bindingContext.ValueProvider.GetValue("SubProduct.Color").ConvertTo(typeof(string));

            subType = pants;
        }

        return subType;

    }
}

これにより、値が正しくバインドされ、ほとんどの部分で機能しますが、サーバー側の検証が失われます。だから、これを間違ってやっていると思うと、さらに検索をして、ダリン・ディミトロフによるこの答えに出くわしました:

ASP.NET MVC 2-抽象モデルへのバインド

そこで、CreateModelのみをオーバーライドするようにモデルバインダーを切り替えましたが、現在は値をバインドしていません。

protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
    {
        ProductTypeBase subType = null;

        var productType = (int)bindingContext.ValueProvider.GetValue("ProductType").ConvertTo(typeof(int));

        if (productType == 1)
        {
            subType = new Shirt();
        }
        else if (productType == 2)
        {
            subType = new Pants();
        }

        return subType;
    }

MVC 3 srcをステップ実行すると、BindPropertiesのように見え、GetFilteredModelPropertiesは空の結果を返します。bindingcontextモデルは、プロパティのないProductTypeBaseに設定されているためだと思います。

誰かが私が間違っていることを見つけることができますか?これは難しいことではないようです。単純なものが欠けていると確信しています...製品モデルにSubProductプロパティを持たせる代わりに、シャツとパンツの個別のプロパティを用意するという別の代替案を考えています。これらは単なるビュー/フォームモデルですので、それはうまくいくと思いますが、何が起こっているのかを理解するために何かあれば、現在のアプローチを機能させたいと思います...

助けてくれてありがとう!

更新:

明確にしませんでしたが、追加したカスタムモデルバインダーはDefaultModelBinderを継承します

回答

ModelMetadataとModelの設定は欠落していました。ありがとうマナス!

protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
        {
            if (modelType.Equals(typeof(ProductTypeBase))) {
                Type instantiationType = null;

                var productType = (int)bindingContext.ValueProvider.GetValue("ProductType").ConvertTo(typeof(int));

                if (productType == 1) {
                    instantiationType = typeof(Shirt);
                }
                else if (productType == 2) {
                    instantiationType = typeof(Pants);
                }

                var obj = Activator.CreateInstance(instantiationType);
                bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(null, instantiationType);
                bindingContext.ModelMetadata.Model = obj;
                return obj;
            }

            return base.CreateModel(controllerContext, bindingContext, modelType);

        }
49
B Z

これは、CreateModel(...)をオーバーライドすることで実現できます。例でそれを示します。

1。モデルといくつかのベースおよび子クラスを作成しましょう

public class MyModel
{
    public MyBaseClass BaseClass { get; set; }
}

public abstract class MyBaseClass
{
    public virtual string MyName
    {
        get
        {
            return "MyBaseClass";
        }
    }
}

public class MyDerievedClass : MyBaseClass
{

    public int MyProperty { get; set; }
    public override string MyName
    {
        get
        {
            return "MyDerievedClass";
        }
    }
}

2。モデルバインダーを作成し、CreateModelをオーバーライドします

public class MyModelBinder : DefaultModelBinder
{
    protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
    {
        /// MyBaseClass and MyDerievedClass are hardcoded.
        /// We can use reflection to read the Assembly and get concrete types of any base type
        if (modelType.Equals(typeof(MyBaseClass)))
        {
            Type instantiationType = typeof(MyDerievedClass);                
            var obj=Activator.CreateInstance(instantiationType);
            bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(null, instantiationType);
            bindingContext.ModelMetadata.Model = obj;
            return obj;
        }
        return base.CreateModel(controllerContext, bindingContext, modelType);
    }

}

。コントローラでgetおよびpostアクションを作成します。

[HttpGet]
public ActionResult Index()
    {
        ViewBag.Message = "Welcome to ASP.NET MVC!";

        MyModel model = new MyModel();
        model.BaseClass = new MyDerievedClass();

        return View(model);
    }

    [HttpPost]
    public ActionResult Index(MyModel model)
    {

        return View(model);
    }

4。次に、Global.asaxでMyModelBinderをデフォルトのModelBinderとして設定これは、すべてのアクションのデフォルトモデルバインダーを設定するために行われます。単一のアクションでは、アクションパラメーターでModelBinder属性を使用できます)

protected void Application_Start()
    {
        AreaRegistration.RegisterAllAreas();

        ModelBinders.Binders.DefaultBinder = new MyModelBinder();

        RegisterGlobalFilters(GlobalFilters.Filters);
        RegisterRoutes(RouteTable.Routes);
    }

5。MyModelタイプのビューとMyDerievedClassタイプの部分ビューを作成できるようになりました

Index.cshtml

@model MvcApplication2.Models.MyModel

@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}

<h2>Index</h2>

@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
    <legend>MyModel</legend>
    @Html.EditorFor(m=>m.BaseClass,"DerievedView")
    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>
}

DerievedView.cshtml

@model MvcApplication2.Models.MyDerievedClass

@Html.ValidationSummary(true)
<fieldset>
    <legend>MyDerievedClass</legend>

    <div class="editor-label">
        @Html.LabelFor(model => model.MyProperty)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.MyProperty)
        @Html.ValidationMessageFor(model => model.MyProperty)
    </div>

</fieldset>

期待どおりに動作するようになり、コントローラーは「MyDerievedClass」タイプのオブジェクトを受け取ります。検証は期待どおりに行われます。

enter image description here

57
Manas

私は同じ問題を抱えていた、私は MvcContrib を使用することになった here .

documentation は時代遅れですが、サンプルを見るとかなり簡単です。

Global.asaxにタイプを登録する必要があります。

protected void Application_Start(object sender, EventArgs e) {
    // (...)
    DerivedTypeModelBinderCache.RegisterDerivedTypes(typeof(ProductTypeBase), new[] { typeof(Shirt), typeof(Pants) });
}

部分ビューに2行追加します。

@model MvcApplication.Models.Shirt
@using MvcContrib.UI.DerivedTypeModelBinder
@Html.TypeStamp()
<div>
    @Html.LabelFor(m => m.Color)
</div>
<div>
    @Html.EditorFor(m => m.Color)
    @Html.ValidationMessageFor(m => m.Color)
</div>

最後に、メインビューで(EditorTemplatesを使用):

@model MvcApplication.Models.Product
@{
    ViewBag.Title = "Products";
}
<h2>
    @ViewBag.Title</h2>

@using (Html.BeginForm()) {
    <div>
        @Html.LabelFor(m => m.Name)
    </div>
    <div>
        @Html.EditorFor(m => m.Name)
        @Html.ValidationMessageFor(m => m.Name)
    </div>
    <div>
        @Html.EditorFor(m => m.SubProduct)
    </div>
    <p>
        <input type="submit" value="create" />
    </p>
}
4

まあ、私はこの同じ問題を抱えていたと私は思うより一般的な方法で解決しました。私の場合、私はJsonを通じてオブジェクトをバックエンドからクライアントに、そしてクライアントからバックエンドに送信しています:

まず第一に、抽象クラスにはコンストラクタで設定したフィールドがあります:

ClassDescriptor = this.GetType().AssemblyQualifiedName;

JsonにはClassDescriptorフィールドがあります

次に、カスタムバインダーを作成しました。

public class SmartClassBinder : DefaultModelBinder
{
        protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
        {

            string field = String.Join(".", new String[]{bindingContext.ModelName ,  "ClassDescriptor"} );
                var values = (ValueProviderCollection) bindingContext.ValueProvider;
                var classDescription = (string) values.GetValue(field).ConvertTo(typeof (string));
                modelType = Type.GetType(classDescription);

            return base.CreateModel(controllerContext, bindingContext, modelType);
        }       
}

そして今、私がしなければならないことは、属性でクラスを飾ることです。例えば:

[ModelBinder(typeof(SmartClassBinder))]]パブリッククラスConfigurationItemDescription

それでおしまい。

1
bunny1985