MVC IEnumerable of EditorFor Template;如何计算

时间:2011-04-13 22:23:24

标签: model-view-controller templates view count ienumerable

视图模型:

public class Foo {
    IEnumerable<Bar> Bars { get; set; }

Foo模板:

@Html.EditorFor(x => x.Bars)

酒吧模板:

//this is the closest I could find 
@ViewData.TemplateInfo.HtmlFieldPrefix //equals "Bars[0]" on the first iteration

有没有办法在渲染过程中获取模板内当前迭代的计数?除了将HtmlFieldPrefix字符串解析为计数。

2 个答案:

答案 0 :(得分:0)

你能否重构你的观点,以便它做到这样的事情:

@for( int idx = 0; idx < Model.Count; idx++ )
{
    @Html.EditorFor(m=>m[idx])
}

道歉,如果IEnumerable&lt;&gt;不支持Count,但如果不支持,你可以使用其他一些集合。

答案 1 :(得分:0)

在这里分享,因为这个问题对我有用,UIHint and template也对我有所帮助。

我坚持不要触摸Foo模板,但计数应该显示在Bar模板中。这就是EditorFor处理IEnumerable的方式。

  1. 我将使用ICollection因为EF不支持IEnumerable延迟加载。 ICollection拥有Count财产。
  2. 即使我需要使用IEnumerable。我将遍历该集合并执行i++。之后,在迭代或foreach完成后,i就是总数。