1

我正在尝试使用 MVC Foolproof 库添加自定义验证器。

但是,按照此处的说明,我收到错误消息“未定义系统”。

我怀疑这是因为该库最初是为使用 MVC 2(可能还有 3)附带的旧验证脚本文件而编写的,所以有没有办法为 MVC 4 附带的 javascript 验证文件注册我的验证功能?

我模型上的属性定义为

[RatingTextRequired(ErrorMessageResourceType = typeof(ModelResources.Customer.Order.FeedbackRating), ErrorMessageResourceName = "RequiredError_Comment")]
public string FeedbackText { get; set; }

验证属性定义为

public class RatingTextRequiredAttribute : ModelAwareValidationAttribute
{
    //this is needed to register this attribute with foolproof's validator adapter
    static RatingTextRequiredAttribute()
    {
        Register.Attribute(typeof (RatingTextRequiredAttribute));
    }

    public override bool IsValid(object value, object container)
    {
        var model = (Areas.Customer.Models.FeedbackRating) container;

        return !(String.IsNullOrWhiteSpace(value.ToString()) && (model.WantsPostEditing || model.Rating == "0"));
    }
}

并且为此的 JavaScript 接线是

Sys.Mvc.ValidatorRegistry.validators["ratingtextrequired"] = function (rule) {

    return function(value, context) {

        var wantsPostEditingProp = foolproof.getId(context.fieldContext.elements[0], "WantsPostEditing");
        var wantsPostEditingVal = document.getElementById(wantsPostEditingProp).value;

        var ratingProp = foolproof.getId(context.fieldContext.elements[0], "Rating");
        var ratingVal = document.getElementById(ratingProp).value;

        return !(value.length == 0 && (wantsPostEditingVal || ratingVal === "0"));
    };
};

另外,我不确定 MvcFoolproofJQueryValidation.js 文件需要什么文件,因为不知何故,我在没有此脚本文件的情况下进行了开箱即用的验证。可悲的是,包括它对我的“未定义系统”错误没有帮助。

4

1 回答 1

0

根据您的错误,您正在使用 jquery 阻塞方法。

有关更多信息,请参阅此帖子

于 2014-02-16T23:45:27.957 回答