ASP.NET MVC 2使用部分视图编译错误

时间:2010-11-06 18:27:45

标签: asp.net-mvc-2

我的另一个编译错误:

  

错误1“模型”与声明'System.Web.Mvc.ViewUserControl.Model'c:\ Users \ Kevin \ Documents \ Visual Studio 2010 \ Projects \ HandiGamer \ HandiGamer \ Views \ Shared \ EditorTemplates \ AdminGameReviewViewModel冲突。 ascx 10 51 HandiGamer.WebUI

我正在尝试使用局部视图来处理“创建”和“编辑”功能。所以,我的创建视图是:

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HandiGamer.WebUI.ViewModels.AdminGameReviewViewModel>" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Create New Review
</asp:Content>

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

    <h2>Create New Review</h2>

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

        <fieldset>
            <legend>Create New Review</legend>
            <%: Html.EditorForModel() %>

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

     <% } %>

    <div>
        <%: Html.ActionLink("Back to Menu", "Index") %>
    </div>

</asp:Content>

<asp:Content ID="Content3" ContentPlaceHolderID="CSSandJavaScript" runat="server">
</asp:Content>

部分观点是:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<HandiGamer.WebUI.ViewModels.AdminGameReviewViewModel>" %>

<p>
    <%: Html.Label("Game Title") %>
    <%: Html.TextBoxFor(Model => Model.GameData.GameTitle) %>
    <%: Html.ValidationMessageFor(Model => Model.GameData.GameTitle) %>
</p>
<p>
    <%: Html.LabelFor(Model => Model.GameData.Genre) %>
    <%: Html.DropDownList("Genre", new SelectList(Model.AllGenres, "GenreID", "Name", Model.GameData.GenreID)) %>
</p>
<p>
    <%: Html.Label("Platforms") %><br />
    <% for (int i = 0; i < Model.AllPlatforms.Count(); ++i) { %>
       <%: Model.AllPlatforms[i].Platform.Name %> <%: Html.CheckBoxFor(plat => plat.AllPlatforms[i].IsSelected)%><br />
    <% } %>
</p>
<p>
    <%: Html.Label("Review Title") %>
    <%: Html.TextBoxFor(model => model.GameData.Content.Title) %>
</p>
<p>
    <%: Html.Label("Review") %>
    <%: Html.TextAreaFor(model => model.GameData.Content.Text) %>
</p>
<p>
    <%: Html.Label("Review Score") %>
    <%: Html.DropDownList("Score", new SelectList(new int[] {1, 2, 3, 4, 5}, "ReviewScore")) %>
</p>
<p>
    <%: Html.LabelFor(model => model.GameData.Pros) %><br />
    <%: Html.TextBox("Pros[]") %><br />
    <%: Html.TextBox("Pros[]") %><br />
    <%: Html.TextBox("Pros[]") %><br />
    <%: Html.TextBox("Pros[]") %><br />
    <%: Html.TextBox("Pros[]") %>
</p>

有问题的行是尝试创建第一个DropDownList的行,特别是当我编写Model.AllGeneres时。模型的调用就是抛出错误的原因。这是令人困惑的,因为没有其他尝试访问Model会触发错误。

1 个答案:

答案 0 :(得分:1)

你的部分中的前几个html助手使用大写'Model'而不是lambda参数的小写'model'。

<%: Html.TextBoxFor(Model => Model.GameData.GameTitle) %>

但它应该是

<%: Html.TextBoxFor(model => model.GameData.GameTitle) %>