我有一个带有Required数据注释的某些字段的表单,然后我有一个带有数据注释[Range(typeof(bool), "true", "true", ErrorMessage="You must accept Terms And Conditions to proceed")]的“接受条款和条件”复选框
一切正常,但令人讨厌的是Required数据注释在发布前引发了错误。表单发布,然后显示错误。

这是为什么?这是常见的行为吗?

最佳答案

我终于想到了这个解决方案:

public class EnforceTrueAttribute : ValidationAttribute, IClientValidatable
    {
        public override bool IsValid(object value)
        {
            if (value == null) return false;
            if (value.GetType() != typeof(bool)) throw new InvalidOperationException("can only be used on boolean properties.");
            return (bool)value == true;
        }

        public override string FormatErrorMessage(string name)
        {
            return "The " + name + " field must be checked in order to continue.";
        }

        public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
        {
            yield return new ModelClientValidationRule
            {
                ErrorMessage = String.IsNullOrEmpty(ErrorMessage) ? FormatErrorMessage(metadata.DisplayName) : ErrorMessage,
                ValidationType = "enforcetrue"
            };
        }
    }


在我的JS中:

jQuery.validator.addMethod("enforcetrue", function (value, element, param) {
            return element.checked;
        });
        jQuery.validator.unobtrusive.adapters.addBool("enforcetrue");

关于c# - ASP.NET MVC:为什么范围数据注释在客户端的复选框上不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24290465/

10-12 00:01