client-side validation trips on DataAnnotation Range attribute

后端 未结 4 1356
北海茫月
北海茫月 2020-12-03 22:32

I have the following code in my Model class:

    [Range(1, 100)]
    public decimal Price { get; set; }

After recent upgrade (I assume) of

相关标签:
4条回答
  • 2020-12-03 23:08

    I run into this recently. I upgraded from MVC 2 to MVC 5. It seems that parameter name was changed from "minimum" and "maximum" to "min" and "max"

    If you want to fix the issue without going through the hassle of upgrading your JavaScript files, search in your solution for these two lines and replace them with the better line

    rule.ValidationParameters['minimum']
    

    replace with

    typeof(rule.ValidationParameters['minimum'])!='undefined'?rule.ValidationParameters['minimum']:rule.ValidationParameters['min']
    

    and

    rule.ValidationParameters['maximum'];
    

    with

    typeof(rule.ValidationParameters['maximum'])!='undefined'?rule.ValidationParameters['maximum']:rule.ValidationParameters['max']
    

    Or alternatively, replace "RangeValidator" function with this code

    Sys.Mvc.RangeValidator.create=function(rule){var $0=typeof(rule.ValidationParameters['minimum'])!='undefined'?rule.ValidationParameters['minimum']:rule.ValidationParameters['min'];var $1=typeof(rule.ValidationParameters['maximum'])!='undefined'?rule.ValidationParameters['maximum']:rule.ValidationParameters['max'];return Function.createDelegate(new Sys.Mvc.RangeValidator($0,$1),new Sys.Mvc.RangeValidator($0,$1).validate);}
    
    0 讨论(0)
  • 2020-12-03 23:13

    Microsoft issued an update to microsoft.jQuery.Unobtrusive.Ajax and to microsoft.jQuery.Unobtrusive.Validation (from version '2.0.20710.0' to '2.0.30116.0') that fixes both .live and validation problems

    0 讨论(0)
  • 2020-12-03 23:30

    We are having the same problem with jQuery.validate 1.11.0 and Microsoft.jQuery.Unobtrusive.Validation 2.0.30116.0. Somewhere in the validation library updates, the number validator broke.

    There is an open issue on the GitHub issue tracker relating to this problem: https://github.com/jzaefferer/jquery-validation/issues/626

    Quoted in that issue:

    return this.optional(element) || ( value >= param[0] && value <= param[1] );

    Because this line checks strings, not numbers. If I have a range between 30 and 200, and I want to validate 120, then the string 120 is lesser then string 30.

    This line must be something like this:

    return this.optional(element) || ( Number(value) >= Number(param[0]) && Number(value) <= Number(param[1]) );

    I have changed my copy of jquery.validate.js:

    // http://docs.jquery.com/Plugins/Validation/Methods/range
    range: function( value, element, param ) {
        return this.optional(element) || (value >= param[0] && value <= param[1]) || (Number(value) >= Number(param[0]) && Number(value) <= Number(param[1]));
    },
    

    Now the range operations work as intended using DataAnnotations:

    [Range(1, 100)]
    public decimal Price { get; set; }
    
    0 讨论(0)
  • 2020-12-03 23:31

    This happening because you have updated Jquery version and new version of Jquery has different new updates and they have also removed some function like .live and replaced it with .on

    Go through it...

    http://jquery.com/upgrade-guide/1.9/#live-removed

    0 讨论(0)
提交回复
热议问题