我有一个像这样的ViewModel类:
class CaseModel {
public Boolean ClientPresent { get; set; }
public ClientModel Client { get; set; }
}
class ClientModel {
[Required]
public String FirstName { get; set; }
[Required]
public String LastName { get; set; }
}
视图页面包含<input type="checkbox" name="ClientPresent" />
和Html.EditorFor( m => m.Client )
部分视图。
当用户提供有关案例(业务域对象)的信息时,他们可以通过取消选中ClientPresent框来选择不指定有关客户端的任何信息(另一个商业对象)。
我希望ASP.NET MVC不对子ClientModel对象执行任何验证 - 但是当表单被POST回服务器时会自动填充CaseModel.Client属性,但是因为FirstName
和{{1用户不一定(必然)提供它意味着它失败了LastName
验证属性,因此[Required]
返回false并且用户收到验证错误消息。
如果ViewData.ModelState.IsValid
为假,我怎样才能获得CaseModel.Client
?
请注意,CaseModel.ClientPresent
是一个完全独立的ViewModel类,在应用程序的其他地方使用(例如在ClientController类中,允许用户编辑客户端的各个实例)。
答案 0 :(得分:3)
我认识到我的问题不是与绑定有关,而是与验证有关:通过保持值意味着当用户重新加载页面时将填充相同的表单字段,我只需要将验证消息丢弃,因为它们不适用。
为此,我意识到我可以执行模型属性验证,但随后使用一些自定义逻辑来删除验证消息。这与我所做的类似:
public class CaseModel {
public void CleanValidation(ModelStateDictionary dict) {
if( this.ClientPresent ) {
dict.Keys.All( k => if( k.StartsWith("Client") dict[k].Errors.Clear() );
}
}
}
(显然我的实际代码更强大,但你得到了一般的想法)
CleanValidation方法由控制器的操作方法直接调用:
public void Edit(Int64 id, CaseModel model) {
model.CleanValidation( this.ModelState );
}
我可以通过将CleanValidation
作为方法添加到新接口IComplexModel
并使新模型绑定器自动调用此方法以使控制器不需要自己调用它来整理此操作。
我有这个接口,适用于任何需要复杂验证的ViewModel:
public interface ICustomValidation {
void Validate(ModelStateDictionary dict);
}
在我的原始示例中,CaseModel
现在看起来像这样:
public class CaseClientModel : ICustomValidation {
public Boolean ClientIsNew { get; set; } // bound to a radio-button
public ClientModel ExistingClient { get; set; } // a complex viewmodel used by a partial view
public ClientModel NewClient { get; set; } // ditto
public void Validate(ModelStateDictionary dict) {
// RemoveElementsWithPrefix is an extension method that removes all key/value pairs from a dictionary if the key has the specified prefix.
if( this.ClientIsNew ) dict.RemoveElementsWithPrefix("ExistingClient");
else dict.RemoveElementsWithPrefix("NewClient");
}
}
验证逻辑由OnActionExecuting
类中的BaseController
调用:
protected override void OnActionExecuting(ActionExecutingContext filterContext) {
base.OnActionExecuting(filterContext);
if( filterContext.ActionParameters.ContainsKey("model") ) {
Object model = filterContext.ActionParameters["model"];
ModelStateDictionary modelState = filterContext.Controller.ViewData.ModelState; // ViewData.Model always returns null at this point, so do this to get the ModelState.
ICustomValidation modelValidation = model as ICustomValidation;
if( modelValidation != null ) {
modelValidation.Validate( modelState );
}
}
}
答案 1 :(得分:2)
您必须通过继承默认的模型绑定器来创建custom model binder。
public class CustomModelBinder: DefaultModelBinder
{
protected override void BindProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor)
{
if (propertyDescriptor.Name == "Client")
{
var clientPresent = bindingContext.ValueProvider.GetValue("ClientPresent");
if (clientPresent == null ||
string.IsNullOrEmpty(clientPresent.AttemptedValue))
return;
}
base.BindProperty(controllerContext, bindingContext, propertyDescriptor);
}
}
<强>的Global.asax.cs 强>
ModelBinders.Binders.Add(typeof(CaseModel), new CustomModelBinder());