MVC数据注解范围验证工作不正常(MVC data annotations range valida

2019-07-21 11:10发布

我有一个RangeValidator上在我的模型的属性为只允许整数是0和100之间我有一个显示表单以通过下列方式更新一个jQuery UI对话框的属性的局部视图。 我已经看过源,可以确认正在正确生成的数据注解属性。 然而,validatation不能正常工作。 它确实执行某种验证,但它没有使用我设置的范围内。 值1,10和100不产生误差。 任何其他单个或两个数位值产生错误。 但是,如果我用零垫,低于所有值百都很好。

模型:

public class MyModel
{
  ...
  [Required(ErrorMessage = "{0} is required")]
  [Range(typeof(int), "0", "100", 
         ErrorMessage = "{0} can only be between {1} and {2}")]
  public int Percentage { get; set; }
  ...
}

部分观点:

@model MyApp.Models.Partials.MyModel

<div id="myDialog" class="editModal" title="Update Percentage">
  @using (Ajax.BeginForm("UpdatePercentage", "MyController", 
                         new AjaxOptions() { HttpMethod = "Post", 
                                             OnSuccess = "onUpdateSuccess" }, 
                         new { name = "myForm" }))
  {
    @Html.ValidationSummary(null, new { style = "width:auto;max-width:22em;               
                                                 float:left;clear:both;" })    
    <div style="width:auto;float:left;clear:both;">
      <div style="width:10em;float: left;text-align:right;clear:left;">
        @Html.Label("Percentage:")
      </div>
      <div style="width:12em;margin-left:1em;float:left;clear:right;">
        @Html.TextBoxFor(m => m.Percentage)
      </div>
    </div>
    <div style="width:23em;clear:both;text-align:center;">
      <hr />
      <input type="button" value="Cancel" class="cancelModalButton" 
             data-modal="myDialog" />
      <input type="submit" value="Submit" class="submitModalButton" 
             data-modal="myDialog" data-form="myForm" />
    </div>
  }
</div>

标记产生的:

<div id="myDialog" class="editModal" title="Update Percentage">
  <form action="/Web/MyController/UpdatePercentage?Length=3" 
        data-ajax="true" data-ajax-method="Post" data-ajax-success="onUpdateSuccess" 
        id="form2" method="post" name="myForm">
    <div class="validation-summary-valid" data-valmsg-summary="true" 
         style="width:auto;max-width:22em;float:left;clear:both;">
      <ul>
        <li style="display:none"></li>
     </ul>
    </div>
    <div style="width:auto;float:left;clear:both;margin-bottom:.75em;">
      <div style="width:10em;float: left;text-align:right;clear:left;">
        <label for="Percentage:">Percentage:</label>
      </div>
      <div style="width:12em;margin-left:1em;float:left;clear:right;">
        <input data-val="true" data-val-number="The field Percentage must be a number." 
               data-val-range="Percentage can only be between 0 and 100" 
               data-val-range-max="100" data-val-range-min="0" 
               data-val-required="Percentage is required" id="Percentage" 
               name="Percentage" type="text" value="10" />
      </div>
    </div>
    <div style="width:23em;clear:both;text-align:center;">
      <hr />
      <input type="button" value="Cancel" class="cancelModalButton" data-modal="myDialog" />
      <input type="submit" value="Submit" class="submitModalButton" data-modal="myDialog" data-form="myForm" />
    </div>
  </form>
</div>

我看到类型设置为text ,如果我改变我的TextBoxForEditorFor它chnages到number ,但我仍然看到相同的行为。

Answer 1:

我有这个确切的问题,并找到了解决办法在这里 。 您需要升级以下内容:

jQuery验证(至少1.11.1)
微软jQuery的不显眼的验证(至少2.0.30116.0)
微软不显眼的jQuery的阿贾克斯(至少2.0.30116.0)

这个问题是在jQuery的1.9.1重大更改介绍



Answer 2:

尝试[Range(0, 100)] 。 删除ErrorMessage完全看到你没有违反与误格式化和大括号任何东西。

如果纯粹的范围内无法正常工作,让力(MS)与你同在! :)



文章来源: MVC data annotations range validation not working properly