4

为什么我不能在下面的代码中使用强类型助手?

@using ISApplication.Models
@model IEnumerable<PersonInformation>

@foreach (PersonInformation item in Model)
{
    @Html.LabelFor(model => model.Name) // Error here.
    @item.Name // But this line is ok

    @* and so on... *@
}

错误信息是

The type of arguments for method '...LabelFor<>... ' cannot be inferred from the usage. Try specifying the type arguments explicitly.

有任何想法吗?谢谢。

4

2 回答 2

8

试试这个方法。您需要从项目中访问名称。

@foreach (PersonInformation item in Model)
{
    @Html.LabelFor(x => item.Name); 
    @Html.DisplayFor(x =>item.Name)

}
于 2013-05-19T23:06:36.170 回答
4

我想我知道你想做什么。

首先,您在 lambda 表达式中使用的模型参数似乎是一个剃刀保留字- 这就是导致您的类型错误的原因。

其次,要解决您的可枚举问题,要同时显示标签和值,您必须使用 IEnumerable 中值的索引

例如:

@using ISApplication.Models
@model IEnumerable<PersonInformation>
@
{
  List<PersonalInformation> people = Model.ToList();
  int i = 0;
}
@foreach (PersonInformation item in people)
{
    @Html.LabelFor(m => people[i].Name) // Error here.
    @Html.DisplayFor(m => people[i].Name) // But this line is ok

    @* and so on... *@
    i++;
}

编辑:

这个方法只有一个for循环,因为目前不需要枚举集合

@using ISApplication.Models
@model IEnumerable<PersonInformation>
@
{
  List<PersonalInformation> people = Model.ToList();
}
@for(int i = 0; i < people.Count; i++)
{
    @Html.LabelFor(m => people[i].Name) // Error here.
    @Html.DisplayFor(m => people[i].Name) // But this line is ok

    @* and so on... *@
}
于 2013-05-19T22:50:24.873 回答