4

这个问题可能是对上一个问题的重申,如果是,请发布链接。无论哪种方式,我仍然会完成这篇文章。

我有这个模型:

public class Employee {
    //omitted for brevity

    public virtual ICollection<ProfessionalExperience> ProfessionalExperiences { get; set; }
    public virtual ICollection<EducationalHistory> EducationalHistories { get; set; }
}

public class ProfessionalExperience {
    // omitted for brevity
}

public class EducationalHistory {
    // omitted for brevity
}

我正在使用此操作在我的视图中显示:

[HttpGet]
public ActionResult Edit(int id) {
    using(var context = new EPMSContext()) {
        var employees = context.Employees.Include("ProfessionalExperiences").Include("EducationalHistories");

        var employee = (from item in employees
                        where item.EmployeeId == id && item.IsDeleted == false
                        select item).FirstOrDefault();

        return View(employee);
    }
}

这是我的观点:

@using(Html.BeginForm()) {
  <div class="editor-label">First Name:</div>
  <div class="editor-field">@Html.TextBoxFor(x => x.FirstName)</div>
  <div class="editor-label">Middle Name:</div>
  <div class="editor-field">@Html.TextBoxFor(x => x.MiddleName)</div>

  @foreach(var item in Model.ProfessionalExperiences) {
      Html.RenderPartial("ProfExpPartial", item);
  }

  @foreach(var item in Model.EducationalHistories) {
      Html.RenderPartial("EducHistPartial", item);
  }
  <input type="submit" value="Save" />
}

我使用 aforeach并为每个集合使用部分视图在视图上显示子集合。

调用我的 Post Edit Action 时,employee模型将子集合设置为 null。

[HttpPost]
public ActionResult Edit(Employee employee) {
    using(var context = new EPMSContext()) {

    }

    return View();
}

我缺少什么来正确地获取子集合?

谢谢!

4

1 回答 1

2

我认为这个问题与 MVC 期望构建集合元素的方式有关(它们在 html 中的名称)。看看这个 SO 答案:https ://stackoverflow.com/a/6212877/1373170 ,尤其是 Scott Hanselman帖子的链接。

您的问题在于,如果您手动迭代并进行单独RenderPartial()调用,输入字段将没有索引,并且DefaultModelBinder将不知道如何构造您的集合。

我会亲自为您的两种 ViewModel 类型创建编辑器模板@Html.EditorFor(model => model.EducationalHistories),并使用和@Html.EditorFor(model => model.ProfessionalExperiences).

于 2012-09-08T07:21:58.600 回答