0

使用 EditorFor(model lambda, "viewTemplateName"),我的输出完全不符合预期。这不会产生任何错误,但它会在没有标记的情况下呈现输出。我究竟做错了什么?

输出:

HarryTomRichard

预期输出(我需要弄清楚如何在 id 上呈现 List [] 索引,但还没有解决这个问题):

<table>
    <tr><td><span><input type="Text" id="Name[0]" value="Harry" /></span></td></tr>
    <tr><td><span><input type="Text" id="Name[1]" value="Tom" /></span></td></tr>
    <tr><td><span><input type="Text" id="Name[2]" value="Richard" /></span></td></tr>
</table>

我的课程:

namespace Marcs.Models {
    public class Student   { public string Name { get; set; } }
    public class Classroom { public List<Student> Students { get; set; }
}

我的控制器:

public ActionResult Index() {
    var myStudents = new List<Student>();
    myStudents.Add(new Student { Name = "Harry" });
    myStudents.Add(new Student { Name = "Tom" });
    myStudents.Add(new Student { Name = "Richard" });
    var myClass = new Classroom {Students = myStudents};
    return View(myClass);
}

我的索引视图:

Inherits="System.Web.Mvc.ViewPage<Marcs.Models.Classroom>" %>
<% using (Html.BeginForm()) { %>
    <%= Html.EditorFor(m => m.Students, "Classroom") %>
    <input type="submit" value="Save" />
<% } %>

我的课堂模板(注意 m => 项目,以便我可以使用项目,而不是模型):

Inherits="System.Web.Mvc.ViewUserControl<List<Marcs.Models.Student>>" %>
<table>
    <% foreach (Marcs.Models.Student item in Model)
    { %><tr><td><%= Html.EditorFor(m => item, "Student")%></td></tr><%
    } %>
</table>

我的学生模板:

Inherits="System.Web.Mvc.ViewUserControl<Marcs.Models.Student>"
%><span><%= Html.Encode( Html.EditorFor( m => m.Name)) %></span>
4

1 回答 1

0

jfar 有答案,我会在添加时适当标记。解决方案只是确保文件位于 Views->ControllerName->EditorTemplates 和 Views->ControllerName->DisplayTemplates 中。这些也可以位于共享文件夹中。

我喜欢这篇文章。现在我需要学习如何使用引用集合的 MVC 2 模板 Html 助手。它在 MVC 2 RC 中。

于 2010-02-21T18:33:46.647 回答