使用RenderAction在视图中使用注释进行MVC2客户端验证

时间:2010-06-01 19:58:13

标签: validation asp.net-mvc-2 data-annotations renderaction

我在使用Html.RenderAction帮助呈现下拉列表的View上遇到客户端验证问题。

我有两个控制器。 SpecieController和CatchController我已经为我的视图创建了ViewModels。 我希望尽可能保持DRY,并且我很可能在不久的将来需要一个适用于所有Specie的DropDownList。

当我创建一个Catch时,我需要设置一个与一个物种的关系,我用一个从物种的DropDownList获得的id来做这个。

ViewModels.Catch.Create

[Required]
public int Length { get; set; }

[Required]
public int Weight { get; set; }

[Required]
[Range(1, int.MaxValue)]
public int SpecieId { get; set; }

ViewModels.Specie.DropDownList

public DropDownList(IEnumerable<SelectListItem> species) { this.Species = species; }
public IEnumerable<SelectListItem> Species { get; private set; }

我的Catch.Create操作视图使用ViewModels.Catch.Create作为模型。

但感觉我在实施中遗漏了一些东西。我想要的是将来自RenderAction的DropDownList中的选定值连接到我的SpecieId。

View.Catch.Create

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<BC.ProjectName.Web.ViewModels.CatchModels.Create>" %>

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

    <% Html.EnableClientValidation(); %>
    <% using (Html.BeginForm()) {%>
        <%: Html.ValidationSummary(true) %>

        <fieldset>
            <div class="row">
                <div class="editor-label">
                    <%: Html.LabelFor(model => model.Weight) %>
                </div>
                <div class="editor-field">
                    <%: Html.TextBoxFor(model => model.Weight) %>
                    <%: Html.ValidationMessageFor(model => model.Weight) %>
                </div>
            </div>

            <div class="row">
                <div class="editor-label">
                    <%: Html.LabelFor(model => model.Length) %>
                </div>
                <div class="editor-field">
                    <%: Html.TextBoxFor(model => model.Length) %>
                    <%: Html.ValidationMessageFor(model => model.Length) %>
                </div>
            </div>

            <div class="row">
                <div class="editor-label">
                    <%: Html.LabelFor(model => model.SpecieId) %>
                </div>
                <div class="editor-field">
                    <%-- Before DRY refactoring, works like I want but not DRY 
                      <%: Html.DropDownListFor(model => model.SpecieId, Model.Species) %>
                    --%>
                    <% Html.RenderAction("DropDownList", "Specie"); %>
                    <%: Html.ValidationMessageFor(model => model.SpecieId) %>
                </div>
            </div>

            <div class="clear"></div>

            <input type="submit" value="Save" />

        </fieldset>

    <% } %>

</asp:Content>

CatchController.Create

[HttpPost]
public ActionResult Create(ViewModels.CatchModels.Create myCatch)
{
    if (ModelState.IsValid)
    {
        // Can we make this StronglyTyped?
        int specieId = int.Parse(Request["Species"]);

        // Save to db
        Catch newCatch = new Catch();
        newCatch.Length = myCatch.Length;
        newCatch.Weight = myCatch.Weight;
        newCatch.Specie = SpecieService.GetById(specieId);
        newCatch.User = UserService.GetUserByUsername(User.Identity.Name);

        CatchService.Save(newCatch);

        // After save redirect
        return Redirect("/");
    }

    // Invalid
    return View();
}

此方案有效但不如我想要的那么顺畅。

  1. ClientSide验证对SpecieId不起作用(在我重构之后),我明白为什么但不知道我怎么能用它。
  2. 我可以将DropDownList SelectedValue“粘合”到myCatch中,这样我就不需要从Request [“Species”]中获取值
  3. 提前感谢您抽出宝贵时间。

1 个答案:

答案 0 :(得分:0)

我不确定这是否有任何帮助,但我使用xVal而不是MVC2的客户端验证,并且它在您描述的场景下工作正常。我有很多客户端验证的DropDownLists,我主要用RenderAction渲染它们。