说我有以下型号:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
public class Town
{
public string Name { get; set; }
public IEnumerable<Person> People { get; set; }
}
然后,在我的Razor视图,我有这样的:
@model Town
@using(Html.BeginForm())
{
<table>
@foreach(var person in Model.People)
{
<tr>
<td>@Html.TextBoxFor(m => person.Name)</td>
<td>@Html.TextBoxFor(m => person.Age)</td>
</tr>
}
<table>
<input type="submit" />
}
然后,我对POST,像这样的动作:
[HttpPost]
public ActionResult Index(Town theTown)
{
//....
}
当我发布时, IEnumerable<Person>
不会在来。 如果我看它的提琴手,收集岗位只有一次,不枚举集合,所以我得到:
People.Name = "whatever"
People.Age = 99
但是,如果我改变人们的IList
,并使用一个for循环,而不是一个foreach ...
@for(var i = 0;i < Model.People.Count;i++)
{
<tr>
<td>@Html.TextBoxFor(m => Model.People[i].Name)</td>
<td>@Html.TextBoxFor(m => Model.People[i].Age)</td>
</tr>
}
有用。 难道我做错了什么? 我在想什么?