4

ASP.Net MVC3プロジェクトで、ベースモデルをバインドするModelBinderを作成しました。私のビューでは、ベースモデルから継承するモデルからオブジェクトを作成します。送信ボタンを押したときに、ModelBinderでのリフレクションによってどのモデルが作成されたかを知りたくありませんが、どうすればよいですか?

ModelBinder:

public class MBTestBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        //need to know which Model was created -> convert into the right object
        //reflection?
    }
}

モデル:

[ModelBinder(typeof(MBTestBinder))]
public class MBTest
{
    public string Name { get; set; }
    public MBTest()  {}
}

public class MBAbl : MBTest
{
    public MBAbl()  {}
    public string House { get; set; }
}

意見:

@model ModelBinderProject.Models.MBTest

@using (Html.BeginForm("Index", "Home")) {
<fieldset>
    <div class="editor-field">
        @Html.EditorForModel(Model)
    </div>
    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>

コントローラ:

public ActionResult Create(MBTest testItem)
{
    //on init get a view from a class that hast inherit the class MBTest
    if (testItem.Name == null ) testItem = new MBAbl();

    return View(testItem);
}

編集:

bindingContext.ValueProvider.GetValue("House")私はフォームの値を取得できますが、bindingContext.ModelType私のモデルはMBTest

4

3 に答える 3

0

これを試して:

public class ModelBinder : DefaultModelBinder, IModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var typeValue = bindingContext.ValueProvider.GetValue("ModelType");
        var type = Type.GetType("Namespace.a.b." + typeValue.AttemptedValue.ToString());

        var model = Activator.CreateInstance(type);

        //Change the model
        bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, type);
        bindingContext.ModelMetadata.Model = model;

        //Here, we used the default model binder of the mvc
        return base.BindModel(controllerContext, bindingContext);;
    }
}
于 2012-10-10T20:18:25.940 に答える
0

最後に、モデルにモデルの名前を入れて、modelbinderに適切なモデルを動的に作成するという回避策で解決しました。あなたがより良い解決策を知っているならplzは私に見せてください:-)

HomeController:

// CREATE
public ActionResult About(MBTest testItem)
{
    if (testItem == null)
    {
        testItem = new MBAbl();
        testItem.Model = "MBAbl";
    }

    return View(testItem);
}

モデル:

public class MBTest
{
    public MBTest()  {}

    [HiddenInput]
    public string Model { get; set; }

    public string Name { get; set; }
}

public class MBAbl : MBTest
{
    public MBAbl()  {}

    public string House { get; set; }
}

public class MBAb2 : MBTest
{
    ...
}

ModelBinder:

public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
    if (controllerContext == null) throw new ArgumentNullException("controllerContext");
    if (bindingContext == null) throw new ArgumentNullException("bindingContext");

    //string 'Model' is needed in the base class
    var modelType = bindingContext.ValueProvider.GetValue("Model");

    if (modelType != null && !string.IsNullOrEmpty(modelType.AttemptedValue))
    {
        string projectName = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name;

        Type classtype = Type.GetType(string.Format("{0}.Models.{1}", projectName, modelType.AttemptedValue));
        PropertyInfo[] properties = classtype.GetProperties();

        var classObject = classtype.GetConstructor(new Type[] { }).Invoke(null);

        foreach (PropertyInfo propertie in properties)
        {
            var value = bindingContext.ValueProvider.GetValue(propertie.Name).AttemptedValue;
            classtype.GetProperty(propertie.Name).SetValue(classObject, value, null);
        }

        return classObject;
    }
    return null;
}
于 2011-06-19T15:22:16.877 に答える
0

ModelBindingContextのドキュメントを確認してください。

コメントに基づいて編集

public class MBTestBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var result = bindingContext.ValueProvider.GetValue("Name");

        if (result == null || string.IsNullOrEmpty(result.AttemptedValue))
           return new MBAbl();
        else
           return new MBTest();
    }
}
于 2011-06-13T23:36:38.763 に答える