视图模型:
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字符串解析为计数。
答案 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
的方式。
ICollection
因为EF不支持IEnumerable
延迟加载。 ICollection
拥有Count
财产。IEnumerable
。我将遍历该集合并执行i++
。之后,在迭代或foreach完成后,i
就是总数。