因此,我尝试应用Darin Dimitrov's answer,但是在我的实现中,bindingContext.ModelName等于“”。
这是我的 View 模型:
public class UrunViewModel
{
public Urun Urun { get; set; }
public Type UrunType { get; set; }
}
这是发布模型类型的 View 部分:
@model UrunViewModel
@{
ViewBag.Title = "Tablo Ekle";
var types = new List<Tuple<string, Type>>();
types.Add(new Tuple<string, Type>("Tuval Baskı", typeof(TuvalBaski)));
types.Add(new Tuple<string, Type>("Yağlı Boya", typeof(YagliBoya)));
}
<h2>Tablo Ekle</h2>
@using (Html.BeginForm("UrunEkle", "Yonetici")) {
@Html.ValidationSummary(true)
<fieldset>
<legend>Tablo</legend>
@Html.DropDownListFor(m => m.UrunType, new SelectList(types, "Item2", "Item1" ))
这是我的自定义模型活页夹:
public class UrunBinder : DefaultModelBinder
{
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type type)
{
var typeValue = bindingContext.ValueProvider.GetValue(bindingContext.ModelName + ".Urun");
var model = Activator.CreateInstance((Type)typeValue.ConvertTo(typeof(Type)));
bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, type);
return model;
}
}
最后,Global.asax.cs中的行:
ModelBinders.Binders.Add(typeof(UrunViewModel), new UrunBinder());
在 Debug模式下的覆盖的
CreateModel
函数中,我可以看到bindingContext.ModelName
等于“”。而且,typeValue
为null,因此CreateInstance
函数失败。 最佳答案
我不认为您需要尝试执行的bindingContext.ModelName
属性。
按照Darin Dimitrov's answer进行操作,看来您可以尝试以下操作。首先,您需要在表单上为该类型选择一个隐藏字段:
@using (Html.BeginForm("UrunEkle", "Yonetici")) {
@Html.Hidden("UrunType", Model.Urun.GetType())
然后在模型绑定(bind)中(基本上从Darin Dimitrov复制):
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
{
var typeValue = bindingContext.ValueProvider.GetValue("UrunType");
var type = Type.GetType(
(string)typeValue.ConvertTo(typeof(string)),
true
);
var model = Activator.CreateInstance(type);
bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, type);
return model;
}
有关如何填充
bindingContext.ModelName
的更多信息,请参见this post。关于c# - bindingContext.ModelName为空?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11369951/