给定一个模型
public class Task
{
public int TaskId { get; set; }
public string Title { get; set; }
public ICollection<SomeData> Information { get; set; }
}
在哪里
public class SomeData
{
public int SomeDataId { get; set; }
public string Description { get; set; }
}
我有一个看法
@model myProject.Models.Task
<div>
@Html.LabelFor(model => model.Title)
</div>
<table>
@Html.Partial("_InformationEdit", Model.Information.ToList(), new ViewDataDictionary(Html.ViewDataContainer.ViewData) {
TemplateInfo = new System.Web.Mvc.TemplateInfo { HtmlFieldPrefix = "Information" }})
</table>
我的部分是
@model IList<myProject.Models.SomeData>
@for (int i = 0; i < Model.Count(); i++)
{
<tr>
<td>
@Html.EditorFor(modelItem => Model[i].Description)
</td>
</tr>
}
然而
我的 Html 字段被渲染为
<input class="text-box single-line" id="Information__0__Description" name="Information.[0].Description" type="text">
名字应该在哪里Information[0].Description
。它在那里有一个额外的点,因此在发布时没有正确绑定回模型。我怎样才能解决这个问题?
根据模型绑定到列表,我可以看到我的 Id 应该是什么,但我就是想不出正确的语法。
此外,有没有更优雅的方法来实现这一点IEnumerable
using a @foreach
?
有关的: