asp.net/MVC自定义模型验证属性不起作用

时间:2018-11-29 15:21:19

标签: asp.net-mvc razor unobtrusive-validation

(我已经取得了一些进展,但仍然无法正常工作,下面的更新...)

我正在尝试实现旧的开始日期不大于结束日期验证。这是我第一次尝试编写自定义验证属性。根据我一直在这里阅读的内容,这就是我想出的...

自定义验证属性:

public class DateGreaterThanAttribute : ValidationAttribute
{
    private string _startDatePropertyName;

    public DateGreaterThanAttribute(string startDatePropertyName)
    {
        _startDatePropertyName = startDatePropertyName;
    }

    protected override ValidationResult IsValid(object value, ValidationContext validationContext)
    {
        var propertyInfo = validationContext.ObjectType.GetProperty(_startDatePropertyName);
        if (propertyInfo == null)
        {
            return new ValidationResult(string.Format("Unknown property {0}", _startDatePropertyName));
        }
        var propertyValue = propertyInfo.GetValue(validationContext.ObjectInstance, null);
        if ((DateTime)value > (DateTime)propertyValue)
        {
            return ValidationResult.Success;
        }
        else
        {
            var startDateDisplayName = propertyInfo
                .GetCustomAttributes(typeof(DisplayNameAttribute), true)
                .Cast<DisplayNameAttribute>()
                .Single()
                .DisplayName;

            return new ValidationResult(validationContext.DisplayName + " must be later than " + startDateDisplayName + ".");
        }
    }
}

视图模型:

public class AddTranscriptViewModel : IValidatableObject
{
    ...

    [DisplayName("Class Start"), Required]
    [DataType(DataType.Date)]
    [DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:MM/dd/yyyy}")]
    [RegularExpression(@"^(1[012]|0?[1-9])[/]([12][0-9]|3[01]|0?[1-9])[/](19|20)\d\d.*", ErrorMessage = "Date out of range.")]
    public DateTime? ClassStart { get; set; }

    [DisplayName("Class End"), Required]
    [DataType(DataType.Date)]
    [DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:MM/dd/yyyy}")]
    [RegularExpression(@"^(1[012]|0?[1-9])[/]([12][0-9]|3[01]|0?[1-9])[/](19|20)\d\d.*", ErrorMessage = "Date out of range.")]
    [DateGreaterThan("ClassStart")]
    public DateTime? ClassEnd { get; set; }

    ...
}

前端的相关部分:

@using (Html.BeginForm("AddManualTranscript", "StudentManagement", FormMethod.Post, new { id = "studentManagementForm", @class = "container form-horizontal" }))
{
    ...
    <div class="col-md-4" id="divUpdateStudent">@Html.Button("Save Transcript Information", "verify()", false, "button")</div>
    ...
    <div class="col-md-2">
        <div id="divClassStart">
            <div>@Html.LabelFor(d => d.ClassStart, new { @class = "control-label" })</div>
            <div>@Html.EditorFor(d => d.ClassStart, new { @class = "form-control" }) </div>
            <div>@Html.ValidationMessageFor(d => d.ClassStart)</div>
        </div>
    </div>

    <div class="col-md-2">
        <div id="divClassEnd">
            <div>@Html.LabelFor(d => d.ClassEnd, new { @class = "control-label" })</div>
            <div>@Html.EditorFor(d => d.ClassEnd, new { @class = "form-control" }) </div>
            <div>@Html.ValidationMessageFor(d => d.ClassEnd)</div>
        </div>
    </div>
    ...
}

<script type="text/javascript">
    ...
    function verify() {

        if ($("#StudentGrades").data("tGrid").total == 0) {
            alert("Please enter at least one Functional Area for the transcript grades.");
        }
        else {
            $('#studentManagementForm').trigger(jQuery.Event("submit"));
        }
    }
    ...
</script>

我看到的行为是表单上所有其他字段上的所有其他验证(如Required,StringLength和RegularExpression等所有标准验证)均按预期方式工作:当我单击“保存”时按钮,对于未通过的字段显示红色文本。我在IsValid代码中添加了一个断点,除非通过所有其他验证,否则它不会命中。即使这样,如果验证检查失败,它也不会停止发布。

进一步的阅读使我在Global.asax.cs中添加了以下内容:

DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(DateGreaterThanAttribute), typeof(DataAnnotationsModelValidator));

但这没什么区别。我还在回发函数中测试了ModelState.IsValid,这是错误的。但是对于其他验证者,如果永远不能做到那么远。我什至在标记中注意到,在生成页面时,似乎在具有验证属性的那些字段上创建了许多标记。魔术在哪里发生?为什么我的自定义验证程序会退出循环?

那里有很多变化,但是我在这里所看到的似乎与我所看到的大致一致。我还阅读了一些有关在客户端上注册验证器的信息,但这似乎仅适用于客户端验证,而不适用于提交/发布时的模型验证。如果答案是我愚蠢的疏忽,我也不会感到尴尬。在大约一天之后,我只需要它即可工作。

更新:

Rob的回答将我引到下面的评论中引用的链接,然后将其引到这里client-side validation in custom validation attribute - asp.net mvc 4,将我引到这里https://thewayofcode.wordpress.com/tag/custom-unobtrusive-validation/

我在这里阅读的内容与所观察到的情况有些矛盾,好像标记中缺少一些内容,看起来作者概述了如何将其放入其中。因此,我在验证属性类中添加了以下内容:

public class DateGreaterThanAttribute : ValidationAttribute, IClientValidatable // IClientValidatable added here
...
    public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
    {
        //string errorMessage = this.FormatErrorMessage(metadata.DisplayName);
        string errorMessage = ErrorMessageString;

        // The value we set here are needed by the jQuery adapter
        ModelClientValidationRule dateGreaterThanRule = new ModelClientValidationRule
        {
            ErrorMessage = errorMessage,
            ValidationType = "dategreaterthan" // This is the name the jQuery adapter will use, "startdatepropertyname" is the name of the jQuery parameter for the adapter, must be LOWERCASE!
        };

        dateGreaterThanRule.ValidationParameters.Add("startdatepropertyname", _startDatePropertyName);

        yield return dateGreaterThanRule;
    }

并创建此JavaScript文件:

(function ($) {
    $.validator.addMethod("dategreaterthan", function (value, element, params) {
        console.log("method");
        return Date.parse(value) > Date.parse($(params).val());
    });

    $.validator.unobtrusive.adapters.add("dategreaterthan", ["startdatepropertyname"], function (options) {
        console.log("adaptor");
        options.rules["dategreaterthan"] = "#" + options.params.startdatepropertyname;
        options.messages["dategreaterthan"] = options.message;
    });
})(jQuery);

(请注意console.log命中了...我从没看到过。)

此后,当我浏览到DataGreaterThanAttribute构造函数和GetClientValidationRules中的页面时,我现在受到了欢迎。同样,ClassEnd输入标记现在具有以下标记:

data-val-dategreaterthan="The field {0} is invalid." data-val-dategreaterthan-startdatepropertyname="ClassStart"

所以我越来越近了。问题是,addMethod和adapater.add似乎没有完成任务。当我使用以下命令在控制台中检查这些对象时:

$.validator.methods
$.validator.unobtrusive.adapters

...我添加的方法和适配器不存在。如果我从控制台中的JavaScript文件运行代码,则确实会添加它们并在那里。我还注意到,如果我通常使用...来检查不显眼的验证对象,那么...

$("#studentManagementForm").data('unobtrusiveValidation')

...没有证据表明我进行了自定义验证。

正如我之前提到的,这里有很多示例,它们似乎在做事上有些不同,因此我仍在尝试一些不同的事情。但我真的希望有人能早日将其提交来,并与我分享这个锤子。

如果我无法使它正常工作,我会戴上安全帽并编写一些骇客的JavaScript来欺骗相同的功能。

1 个答案:

答案 0 :(得分:1)

我认为您的模型上需要IEnumerable

大约4年前,我不得不做类似的事情,如果有帮助的话,仍然可以摘录片段:

public class ResultsModel : IValidatableObject
{
    [Required(ErrorMessage = "Please select the from date")]
    public DateTime? FromDate { get; set; }

    [Required(ErrorMessage = "Please select the to date")]
    public DateTime? ToDate { get; set; }

    IEnumerable<ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
    {
        var result = new List<ValidationResult>();
        if (ToDate < FromDate)
        {
            var vr = new ValidationResult("The to date cannot be before the from date");
            result.Add(vr);
        }
        return result;
    }
}