我一直在研究一个MVC项目,它有一个带有几个嵌套类的复杂模型,一个类有另一个嵌套在其中的类。我可以正确地更新所有其他复杂类型,但最后一个类型永远不会正确更新。我已确保注册其自定义模型绑定器,该绑定器将被执行并返回一个具有分配给其属性的正确值的对象,但原始模型永远不会更新。
我已经剪掉了所有有效的东西,只留下我的结构:
类
public class Case
{
public Case()
{
PersonOfConcern = new Person();
}
public Person PersonOfConcern { get; set; }
}
[ModelBinder(typeof(PersonModelBinder))]
public class Person
{
public Person()
{
NameOfPerson = new ProperName();
}
public ProperName NameOfPerson { get; set; }
}
[TypeConverter(typeof(ProperNameConverter))]
public class ProperName : IComparable, IEquatable<string>
{
public ProperName()
: this(string.Empty)
{ }
public ProperName(string fullName)
{
/* snip */
}
public string FullName { get; set; }
}
模型活页夹
public class PersonModelBinder : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
if (bindingContext.ModelType == typeof(Person))
{
HttpRequestBase request = controllerContext.HttpContext.Request;
string prefix = bindingContext.ModelName + ".";
if (request.Form.AllKeys.Contains(prefix + "NameOfPerson"))
{
return new Person()
{
NameOfPerson = new ProperName(request.Form.Get(prefix + "NameOfPerson"))
};
}
}
return base.BindModel(controllerContext, bindingContext);
}
}
控制器
[HttpPost]
public ActionResult Edit(int id, FormCollection collection)
{
if (CurrentUser.HasAccess)
{
Case item = _caseData.Get(id);
if (TryUpdateModel(item, "Case", new string[] { /* other properties removed */ }, new string[] { "PersonOfConcern" })
&& TryUpdateModel(item.PersonOfConcern, "Case.PersonOfConcern"))
{
// ... Save here.
}
}
}
我的智慧结束了。执行PersonModelBinder
并返回正确的值集,但模型永远不会更新。我在这里缺少什么?
答案 0 :(得分:0)
我认为你应该在Application_Start上的全局asax中添加它
ModelBinders.Binders.Add(typeof(PersonModelBinder ), new PersonModelBinder ());