6

我有一个页面,我通过该页面将两个视图模型发布到控制器,查询和约会。预约嵌套在查询中。用户可以选择在不创建约会的情况下向我们提交查询。

我在视图模型属性上使用内置的 MVC 必需属性。

我的问题是,当用户选择在没有预约的情况下创建查询时,我怎样才能优雅地忽略嵌套预约视图模型上的验证器并让 ModelState.IsValid 返回 true?

if(!viewModel.CreateAppointment)
            {
                //ignore the nested view models validation                            
            }
4

4 回答 4

5

您可以制作一个自定义的 IgnoreModelError 属性,如下所示,并在您的视图中使用 2 个单独的按钮,一个用于查询,一个用于预约。

// C#
public class IgnoreModelErrorAttribute : ActionFilterAttribute
{
    private string keysString;

    public IgnoreModelErrorsAttribute(string keys)
        : base()
    {
        this.keysString = keys;
    }

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        ModelStateDictionary modelState = filterContext.Controller.ViewData.ModelState;
        string[] keyPatterns = keysString.Split(new char[] { ',' }, 
                 StringSplitOptions.RemoveEmptyEntries);
        for (int i = 0; i < keyPatterns.Length; i++)
        {
            string keyPattern = keyPatterns[i]
                .Trim()
                .Replace(@".", @"\.")
                .Replace(@"[", @"\[")
                .Replace(@"]", @"\]")
                .Replace(@"\[\]", @"\[[0-9]+\]")
                .Replace(@"*", @"[A-Za-z0-9]+");
            IEnumerable<string> matchingKeys = _
               modelState.Keys.Where(x => Regex.IsMatch(x, keyPattern));
            foreach (string matchingKey in matchingKeys)
                modelState[matchingKey].Errors.Clear();
        }
    }
}


[HttpPost]
[IgnoreModelErrors("Enquiry.Appointment")]
public ActionResult CreateEnquiryOnly(Enquiry enquiry)
{
    // Code for enquiry only.
}

[HttpPost]
public ActionResult CreateAppointment(Enquiry enquiry)
{
    // Code for appointment.
}
于 2014-08-19T09:59:03.050 回答
3

好吧,在使用标准数据属性时,没有办法“优雅地”忽略错误。

不过,您有几个选择。快速而肮脏(即不优雅)的方法是从控制器中的 ModelState 中清除相关错误。

if (some condition) {
    ModelState["controlName"].Errors.Clear();
}

您还可以编写自己的使用条件测试的自定义数据属性。像这里描述的东西:

http://blogs.msdn.com/b/simonince/archive/2011/02/04/conditional-validation-in-asp-net-mvc-3.aspx

第三种方法是避开属性并使用验证框架,例如FluentValidation

最后一个选择是使用 JavaScript 来确定数据的正确状态,然后修改表单操作 url 以发布到不同的操作方法。然后,您可以使用 Bind 属性装饰操作方法参数,以排除您不想要的数据项。但是,我不会推荐这个,因为它要求客户端参与服务器端验证过程。

于 2012-10-03T17:14:48.917 回答
2

这就是我最终做的事情。

这使我能够清除嵌套约会 ViewModel 上的所有错误。

if (!viewModel.CreateAppointment)
            {
                foreach (var modelError in ModelState)
                {
                    string propertyName = modelError.Key;

                    if (propertyName.Contains("AppointmentsViewModel"))
                    {
                        ModelState[propertyName].Errors.Clear();
                    }
                }
            }
于 2012-10-05T09:49:07.590 回答
0

另一个选项不是在 Inquiry 中嵌套 Appointment,而是为您的页面分别创建一个包含 Appointment 和 Inquiry 模型的 ViewModel,然后您可以使用 Bind 属性和 Property Include 或 Exclude 来选择性地选择要绑定或排除的模型,如下所示.

    Public Class EnquiryViewModel
    {
        public Appointment App {get; set;}
        public Enquiry Enq {get; set; }
    } 

    [HttpPost]
    //Only bind Enquiry model and it's errors.
    public ActionResult CreateEnquiryOnly([Bind(Include = "Enq")]EnquiryViewModel enquiry)
    {
        if(ModelState.IsValid)
        {
        // Code for enquiry only.
        }
    }
于 2014-08-19T21:11:14.250 回答