19

我的RangeValidator模型中有一个属性,只允许 0 到 100 之间的整数。我有一个部分视图,显示一个表单以通过 jQuery UI 对话框更新属性。我查看了源代码,可以确认数据注释属性正在正确生成。但是,验证无法正常工作。它确实执行了某种验证,但没有使用我设置的范围。值 1、10 和 100 不会产生错误。任何其他一位或两位数的值都会产生错误。但是,如果我用零填充,所有小于 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其更改为 ,number但我仍然看到相同的行为。

4

2 回答 2

7

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

jQuery Validation(至少 1.11.1)
Microsoft jQuery Unobtrusive Validation(至少 2.0.30116.0)
Microsoft jQuery Unobtrusive Ajax(至少 2.0.30116.0)

该问题是由 jQuery 1.9.1 中的重大更改引入的

于 2013-07-17T16:40:44.167 回答
3

试试[Range(0, 100)]。完全删除ErrorMessage以确保您没有使用错误的格式和大括号破坏任何内容。

如果纯范围无法正常工作,请让力量 (MS) 与您同在!:)

于 2013-03-13T03:46:42.573 回答