ASP.NET MVC 2:如何将Html.EditorFor用于自定义模型?

时间:2011-01-23 22:37:23

标签: c# asp.net-mvc asp.net-mvc-2 html-helper

我想知道这在MVC 2中是如何工作的。

假设我想渲染一个包含问题列表的视图(Popup.ascx),我创建了这些ViewModels

  public class VMPopup
  {
    public List<VMQuestion> Questions;
  }
  public class VMQuestion
  {
    public int Id
    public string Question;
    public string Answer;
    public bool Mandatory;
  }

我会在控制器中有这样的方法

[AcceptVerbs(HttpVerbs.Get)]
public ActionResult Popup(int elementId)
{
  List<VMQuestion> questions = new List<VMQuestion>();

  // Code to generate the questions
  // .....

  VMPopup vm = new VMPopup{Questions = questions};
  return View(vm);
}

1 - 我会在Popup.ascx视图中添加什么?我在这需要一个BeginForm吗?

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<EnterpriseConnectMVC.Controllers.VMPopup>" %>

    <table border="1">
      <% foreach(var q in Model.Questions) { %>
        <%= Html.EditorFor(q); // I know this is wrong, how should I do it? %> 
      <% } %>
    </table>

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

这是我对VMQuestion的看法

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<EnterpriseConnectMVC.Controllers.VMQuestion>" %>

<tr>
  <td><%= Model.Question %></td>
  <td>
    <%= Html.TextBoxFor(m=>m.Answer) %>
    <%= Html.ValidationMessageFor(m=>m.Answer) %>
  </td>
</tr>

2 - 那么当用户点击提交按钮时,如何获取值?

提前致谢。

1 个答案:

答案 0 :(得分:1)

我会在POST操作上接受IEnumerable<VMQuestion>的参数。

您需要为默认模型绑定器的每个VMQuestion的属性添加索引以绑定集合。请参阅此文章:http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx