我的实体:( PersonModel 应该有一个 AddressOne 或 AddressTwo 类型的地址(可能还有其他),因此 PersonModel 有一个地址字段的对象类型。)
public class Person
{
public int PersonId { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public object Address { get; set; }
}
public class AddressOne
{
public string Street { get; set; }
public string City { get; set; }
}
public class AddressTwo
{
public string Province { get; set; }
public string State { get; set; }
}
模型:(我在 typeOfAddress 中传递了一个隐藏字段以匹配表单提交后的正确地址)
public class PersonModel
{
private System.Type _typeOfAddress;
private object _address;
[Required]
public int PersonId { get; set; }
[Required]
public string Name { get; set; }
[Required]
public string Surname { get; set; }
public System.Type typeOfAddress
{
get { return _typeOfAddress; }
set { _typeOfAddress = value; }
}
public object Address
{
get {
return _address;
}
set {
_address = value;
_typeOfAddress = _address.GetType();
}
}
}
public class AddressOneModel
{
[Required]
public string Street { get; set; }
[Required]
public string City { get; set; }
}
public class AddressTwoModel
{
[Required]
public string Province { get; set; }
[Required]
public string State { get; set; }
}
我的观点(对于地址字段,我有此代码中省略的广告编辑器模板):
@using (Html.BeginForm()) {
<ul>
<li>
PersonId: @Html.EditorFor(model => model.PersonId)
</li>
<li>
Name: @Html.EditorFor(model => model.Name)
</li>
<li>
Surname: @Html.EditorFor(model => model.Surname)
</li>
<li>
Address:
</li>
<li>
@Html.HiddenFor(model => model.typeOfAddress)
@Html.EditorFor(model => model.Address)
</li>
</ul>
<button type="submit">Submit</button>
}
然后是我的控制器:(在此示例中,我在模型中加载 AddressOne 但应该是一或二取决于运行时...)
[HttpGet]
public ActionResult Index()
{
PersonModel myPerson = new PersonModel();
myPerson.PersonId = 1;
myPerson.Name = "Michael";
myPerson.Surname = "Douglas";
AddressOneModel Address = new AddressOneModel();
Address.Street = "5th Avenue";
Address.City = "New York";
myPerson.Address = Address;
return View(myPerson);
}
[HttpPost]
public ActionResult Index([ModelBinder(typeof(PersonModelBinder))]PersonModel myPerson)
{
if (ModelState.IsValid) {
// some things here
}
return View();
}
然后是 PersonModel 的模型绑定器:
public class PersonModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
PersonModel bindedModel = new PersonModel();
foreach (var Property in typeof(PersonModel).GetProperties())
{
PropertyInfo info = bindedModel.GetType().GetProperty(Property.Name);
object castedInfo = new object();
var uType = info.PropertyType;
if (uType == typeof(string))
{
castedInfo = bindingContext.ValueProvider.GetValue(Property.Name).AttemptedValue.ToString();
}
else if (uType == typeof(Type))
{
castedInfo = Type.GetType(bindingContext.ValueProvider.GetValue(Property.Name).AttemptedValue.ToString());
}
else if (uType == typeof(object))
{
string objType = bindingContext.ValueProvider.GetValue("typeOfAddress").AttemptedValue;
object address = (object)Activator.CreateInstance(Type.GetType(objType));
// another foreach as previous
}
else
{
object uCasted = (object)Activator.CreateInstance(info.PropertyType);
uCasted = Convert.ChangeType(bindingContext.ValueProvider.GetValue(Property.Name).AttemptedValue, Property.PropertyType);
castedInfo = uCasted;
}
info.SetValue(bindedModel, castedInfo, null);
}
return bindedModel;
}
这是实现 PersonModel 绑定的正确方法吗?那么 [Post] 控制器中的验证呢?
我还看到了一种以如下方式使用 DefaultBinder 的方法:
[ModelBinderType(typeof(PersonModel))]
public class PersonModelBinder : DefaultModelBinder
{
//...
}
但我在 MVC3 中没有找到 ModelBinderType 的任何参考!!有什么建议吗?