如何防止 Fluent Validation 在特定条件下验证模型

How to prevent Fluent Validation from validating the model in certain condition

我在表单上有两个名称不同的提交按钮。在控制器中 我有一个 HttpPost 操作方法,在单击两个提交按钮中的任何一个时调用该方法。这是操作方法的内部结构:

public ActionResult Save(Document model){
    if(Request["btnSave"]!=null){
       if (ModelState.IsValid){
         //go ahead and save the model to db
       }
    }else{//I don't need the model to be validated here
       //save the view values as template in cache
    }
}

因此,当单击名称为 "btnSave" 的按钮时,我需要在将模型保存到数据库之前对其进行验证,但如果单击另一个按钮,我不需要任何验证,因为我只是保存缓存中的表单值,以便稍后调用它们。显然,在这种情况下我不需要验证任何东西。我使用流利的验证。我的问题是无论按哪个按钮我都会收到警告。我可以控制 FV 何时验证模型吗?

您可以将 属性 btnSave 添加到您的模型中:

public class Document
{
    public string btnSave {get; set;} // same name that button to correctly bind
}

并在您的验证器中使用条件验证:

public class DocumentValidator : AbstractValidator<Document>
{
    public DocumentValidator()
    {
        When(model => model.btnSave != null, () =>
        {
            RuleFor(...); // move all your document rules here
        });

        // no rules will be executed, if another submit clicked
    }
}