我正在关注这个 邮政.

服务器端验证按预期工作。但客户端验证器仅为 ID 字段生成。

我的 Linq2Sql 实体类有两个属性 ID 和 CategoryName,下面是我的元数据类

[MetadataType(typeof(BookCategoryMetadata))]
public partial class BookCategory{}

public class BookCategoryMetadata
{
    [Required]
    [StringLength(50)]
    public string CategoryName { get; set; }
}

添加类别的方法

/// <summary>
/// Adds the category.
/// </summary>
/// <param name="category">The category.</param>
public void AddCategory(BookCategory category)
{
    var errors = DataAnotationsValidationHelper.GetErrors(category);
    if (errors.Any()) {
        throw new RulesException(errors);
    }

    _db.BookCategories.InsertOnSubmit(category);
    _db.SubmitChanges();
}

在控制器中创建动作

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Exclude = "ID")]BookCategory category)
{
    try {
        _repository.AddCategory(category);
    } catch (RulesException ex) {
        ex.AddModelStateErrors(ModelState, "");
    }

    return ModelState.IsValid ? RedirectToAction("Index") : (ActionResult)View();
}

还有景色

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

<h2>Create</h2>

<%= Html.ValidationSummary("Create was unsuccessful. Please correct the errors and try again.") %>

<% using (Html.BeginForm()) {%>

    <fieldset>
        <legend>Fields</legend>
        <p>
            <label for="CategoryName">CategoryName:</label>
            <%= Html.TextBox("CategoryName") %>
            <%= Html.ValidationMessage("CategoryName", "*") %>
        </p>
        <p>
            <input type="submit" value="Create" />
        </p>
    </fieldset>

<% } %>

<div>
    <%=Html.ActionLink("Back to List", "Index") %>
</div>
<%= Html.ClientSideValidation<BookCategory>() %>

现在 xVal 只生成 ID 字段的验证规则。

<script type="text/javascript">xVal.AttachValidator(null, {"Fields":[{"FieldName":"ID","FieldRules":[{"RuleName":"DataType","RuleParameters":{"Type":"Integer"}}]}]})</script>

CategoryName 的服务器端验证工作完美。为什么 xVal 没有为 CategoryName 生成验证规则?我究竟做错了什么?

有帮助吗?

解决方案

据推测,xVal 0.8 有伙伴类正在运行。您可以在这里阅读这篇文章:

[http://xval.codeplex.com/Thread/View.aspx?ThreadId=54300][1]

如果这不能解决您的问题,请尝试下载 xVal 的最新代码并修改 xVal.RuleProviders.PropertyAttributeRuleProviderBase::GetRulesFromTypeCore 成为

 protected override RuleSet GetRulesFromTypeCore(Type type)
 {
   var typeDescriptor = metadataProviderFactory(type).GetTypeDescriptor(type);
   var rules = (from prop in typeDescriptor.GetProperties().Cast<PropertyDescriptor>()
                         from rule in GetRulesFromProperty(prop)
                         select new KeyValuePair<string, Rule>(prop.Name, rule));

   var metadataAttrib = type.GetCustomAttributes(typeof(MetadataTypeAttribute), true).OfType<MetadataTypeAttribute>().FirstOrDefault();
   var buddyClassOrModelClass = metadataAttrib != null ? metadataAttrib.MetadataClassType : type;
   var buddyClassProperties = TypeDescriptor.GetProperties(buddyClassOrModelClass).Cast<PropertyDescriptor>();
   var modelClassProperties = TypeDescriptor.GetProperties(type).Cast<PropertyDescriptor>();

   var buddyRules =  from buddyProp in buddyClassProperties
                              join modelProp in modelClassProperties on buddyProp.Name equals modelProp.Name
                              from rule in GetRulesFromProperty(buddyProp)
                              select new KeyValuePair<string, Rule>(buddyProp.Name, rule);

   rules = rules.Union(buddyRules);
   return new RuleSet(rules.ToLookup(x => x.Key, x => x.Value));
 }

另外,如果这解决了您的问题,您可能需要联系 Steve Sanderson 并让他知道此错误仍然存​​在。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top