我有一个项目需要一些内部化。具体来说,我有一个名为“ LocalizedString”的类,其中包含特定文本的英语和德语翻译。

看起来像这样:

 [ComplexType]
 public class LocalizedString : IComparer, IComparable
 {
   public string EnglishText { get; set; }
   public string GermanText { get; set; }
// this is only an example - the real class has some methods to return the text in the current language.
     }


该类几乎用于我的所有域和视图模型,如下所示:

public class DemoItem
{
  public LocalizedString ItemDescription {get; set;}
}


最后,DemoItem可能如下所示:

@model Domain.Entities.DemoItem

@{
    ViewBag.Title = "Create";
}

<h2>Create</h2>


@using (Html.BeginForm())
{
    @Html.AntiForgeryToken()

    <div class="form-horizontal">
        <h4>DemoItem</h4>
        <hr />
        @Html.ValidationSummary(true, "", new { @class = "text-danger" })
        <div class="form-group">
            @Html.LabelFor(model => model.ItemDescription , htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.ItemDescription , new { htmlAttributes = new { @class = "form-control" } })
                @Html.ValidationMessageFor(model => model.ItemDescription , "", new { @class = "text-danger" })
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Create" class="btn btn-default" />
            </div>
        </div>
    </div>
}

<div>
    @Html.ActionLink("Back to List", "Index")
</div>

@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}


现在的问题是,EditorFor方法将两个文本框呈现为ItemDescription的输入字段-很好,应该看起来像这样。但是如果有错误,例如用户忘记输入德语描述,ValidationMessageFor()不起作用。或更具体地说:由于回发提供的项目不是预期的格式,因此不会向用户显示错误。通过ValidationSummary显示所有错误都可以,但是不像在冒犯元素旁边的错误那样好。

是否有一种简单的方法来获取特定于违规元素的ValidationMessages?

最佳答案

如果您对LocalizedString类中的属性使用DataAnnotation属性,则验证消息将显示在有问题的元素旁边。

我将验证属性添加到GermanText和EnglishText,如下所示

    [Required]
    public string EnglishText { get; set; }

    [Required]
    public string GermanText { get; set; }


并能够查看违规元素旁边的验证消息。这样做,我可以在每个有问题的元素旁边看到验证消息。

我希望这会成功。

10-06 05:24