这里的简单问题(我想)。
我的表单底部有一个复选框,用户必须同意这些条款和条件。如果用户没有选中该框,我希望在我的验证摘要中显示一条错误消息以及其他表单错误。
我将此添加到我的视图模型中:
[Required]
[Range(1, 1, ErrorMessage = "You must agree to the Terms and Conditions")]
public bool AgreeTerms { get; set; }
但那没用。
是否有一种简单的方法可以使用数据注释强制值为真?
答案 0 :(得分:26)
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Checked.Entitites
{
public class BooleanRequiredAttribute : ValidationAttribute, IClientValidatable
{
public override bool IsValid(object value)
{
return value != null && (bool)value == true;
}
public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
//return new ModelClientValidationRule[] { new ModelClientValidationRule() { ValidationType = "booleanrequired", ErrorMessage = this.ErrorMessage } };
yield return new ModelClientValidationRule()
{
ValidationType = "booleanrequired",
ErrorMessage = this.ErrorMessageString
};
}
}
}
答案 1 :(得分:6)
您可以编写已经提到的自定义验证属性。如果您正在进行客户端验证,则需要编写自定义javascript以启用不显眼的验证功能。例如如果您使用的是jQuery:
// extend jquery unobtrusive validation
(function ($) {
// add the validator for the boolean attribute
$.validator.addMethod(
"booleanrequired",
function (value, element, params) {
// value: the value entered into the input
// element: the element being validated
// params: the parameters specified in the unobtrusive adapter
// do your validation here an return true or false
});
// you then need to hook the custom validation attribute into the MS unobtrusive validators
$.validator.unobtrusive.adapters.add(
"booleanrequired", // adapter name
["booleanrequired"], // the names for the properties on the object that will be passed to the validator method
function(options) {
// set the properties for the validator method
options.rules["booleanRequired"] = options.params;
// set the message to output if validation fails
options.messages["booleanRequired] = options.message;
});
} (jQuery));
另一种方式(有点像黑客并且我不喜欢它)是在模型上有一个始终设置为true的属性,然后使用 CompareAttribute 来比较您的* AgreeTerms * 属性的值。很简单,但我不喜欢它。)
答案 2 :(得分:2)
ASP.Net Core 3.1
我知道这是一个非常老的问题,但是对于asp.net核心,IClientValidatable
不存在,我想要一个可以与jQuery Unobtrusive Validation
以及服务器验证一起使用的解决方案,因此需要这样的问题Link我做了一个小的修改,适用于复选框等布尔字段。
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
public class MustBeTrueAttribute : ValidationAttribute, IClientModelValidator
{
public void AddValidation(ClientModelValidationContext context)
{
MergeAttribute(context.Attributes, "data-val", "true");
var errorMsg = FormatErrorMessage(context.ModelMetadata.GetDisplayName());
MergeAttribute(context.Attributes, "data-val-mustbetrue", errorMsg);
}
public override bool IsValid(object value)
{
return value != null && (bool)value == true;
}
private bool MergeAttribute(
IDictionary<string, string> attributes,
string key,
string value)
{
if (attributes.ContainsKey(key))
{
return false;
}
attributes.Add(key, value);
return true;
}
}
[Display(Name = "Privacy policy")]
[MustBeTrue(ErrorMessage = "Please accept our privacy policy!")]
public bool PrivacyPolicy { get; set; }
$.validator.addMethod("mustbetrue",
function (value, element, parameters) {
return element.checked;
});
$.validator.unobtrusive.adapters.add("mustbetrue", [], function (options) {
options.rules.mustbetrue = {};
options.messages["mustbetrue"] = options.message;
});
答案 3 :(得分:0)
实际上有一种方法可以使其与DataAnnotations一起使用。通过以下方式:
[Required]
[Range(typeof(bool), "true", "true")]
public bool AcceptTerms { get; set; }