将BootstrapValidator与MVC DataAnnotations一起使用

时间:2015-06-03 17:19:12

标签: asp.net-mvc twitter-bootstrap validation asp.net-mvc-4 data-annotations

我正在使用DataAnnotations来指定我的验证规则,默认情况下,这些验证规则会添加到客户端,以便通过jquery进行验证。

我想使用 BootstrapValidator.js ,因为我喜欢呈现错误/成功消息的方式。但是,它要求我在客户端重新定义验证规则。 An article about BootstrapValidator.js可以找到。

有没有办法可以使用DataAnnotations并在一个地方定义规则并仍使用BootstrapValidator?

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

无需再次重新定义验证规则。您可以通过删除快速脚本并在MVC验证脚本之后引用它来简单地将 MVC类型验证(即Jquery Validation Plugin)与Bootstrap样式集成:

$(function () {
    $('span.field-validation-valid, span.field-validation-error').each(function () {
        $(this).addClass('help-inline');
    });

    $('.validation-summary-errors').each(function () {
        $(this).addClass('alert');
        $(this).addClass('alert-error');
        $(this).addClass('alert-block');
    });

    $('form').submit(function () {
        if ($(this).valid()) {
            $(this).find('div.control-group').each(function () {
                if ($(this).find('span.field-validation-error').length == 0) {
                    $(this).removeClass('error');
                }
            });
        }
        else {
            $(this).find('div.control-group').each(function () {
                if ($(this).find('span.field-validation-error').length > 0) {
                    $(this).addClass('error');
                }
            });
            $('.validation-summary-errors').each(function () {
                if ($(this).hasClass('alert-error') == false) {
                    $(this).addClass('alert');
                    $(this).addClass('alert-error');
                    $(this).addClass('alert-block');
                }
            });
        }
    });

    $('form').each(function () {
        $(this).find('div.control-group').each(function () {
            if ($(this).find('span.field-validation-error').length > 0) {
                $(this).addClass('error');
            }
        });
    });

    $("input[type='password'], input[type='text']").blur(function () {
        if ($(this).hasClass('input-validation-error') == true || $(this).closest(".control-group").find('span.field-validation-error').length > 0) {
            $(this).addClass('error');
            $(this).closest(".control-group").addClass("error");
        } else {
            $(this).removeClass('error');
            $(this).closest(".control-group").removeClass("error");
        }
    });
});

var page = function () {
    //Update that validator
    $.validator.setDefaults({
        highlight: function (element) {
            $(element).closest(".control-group").addClass("error");
        },
        unhighlight: function (element) {
            $(element).closest(".control-group").removeClass("error");
        }
    });
} ();