尝试使用自定义验证属性时发生System.InvalidOperationException

时间:2019-03-13 16:54:35

标签: c# .net asp.net-mvc validation asp.net-mvc-5

我正在尝试添加一个必须在进度栏上打勾的复选框,即标准条款和条件声明。

环顾四周,所有解决此问题的方法都是以下代码的某些变体:

[Display(Name = "This Is A Test")]
[MustBeTrue(ErrorMessage = "come on!")]
//[MustBeTrue(ErrorMessageResourceType = typeof(Res.Text), ErrorMessageResourceName = "ValidationMessage")]
//[Range(typeof(bool), "true", "true", ErrorMessage = "You gotta tick the box!")]
public bool TermsAndConditions { get; set; }

自定义属性如下:

public class MustBeTrueAttribute : ValidationAttribute, IClientValidatable
{
    public override bool IsValid(object value)
    {
        return value is bool && (bool)value;
    }

    public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
    {
        yield return new ModelClientValidationRule
        {
            ErrorMessage = FormatErrorMessage(metadata.GetDisplayName()),
            ValidationType = "mustbetrue"
        };
    }
}

然后类似:

$.validator.unobtrusive.adapters.addBool("mustbetrue", "required");

在我看来,我正在渲染复选框,如下所示:

@Html.CheckBoxFor(m => m.TermsAndConditions, false)
@Html.LabelFor(m => m.TermsAndConditions)
@Html.ValidationMessageFor(m => m.TermsAndConditions)

我对此进行了很多尝试,但我总是遇到相同的例外情况:

System.InvalidOperationException
  HResult=0x80131509
  Message=The parameter conversion from type 'System.String' to type 'Nordics.Models.PolicyManagement.Affiliates.Affiliate' failed because no type converter can convert between these types.
  Source=System.Web.Mvc
  StackTrace:
   at System.Web.Mvc.ValueProviderResult.ConvertSimpleType(CultureInfo culture, Object value, Type destinationType)

我完全不知所措,有人能指出我正确的方向吗?谢谢。

1 个答案:

答案 0 :(得分:0)

因此,事实证明这不是问题。我不太确定这时发生了什么异常,但是在新的验证代码之前就已经存在了。验证代码实际上可以正常工作,但是由于网站的构建方式,它试图在查看视图之前验证模型,因此视图永远不会加载,因为复选框始终以false开头。