如何在MVC视图中显示对象列表?

时间:2014-03-12 08:54:58

标签: c# .net asp.net-mvc list ienumerable

我有一个返回字符串列表的方法。我只是想在视图中以纯文本形式显示该列表。

以下是来自控制器的列表:

public class ServiceController : Controller
{

    public string Service()
    {
        //Some code..........
        List<string> Dates = new List<string>();
        foreach (var row in d.Rows)
        {
            Dates.Add(row[0]);
        }
        return Dates.ToString();
    }

    public ActionResult Service()
    {
        Service();
   }
}

观点:

<table class="adminContent">
    <tr>
        <td>HEJ</td>
    </tr>
     <tr>
        <td>@Html.Action("Service", "Service")</td>
    </tr>
    </tr>
</table>

我认为我必须在视图中做一些事情,比如foreach循环,并使用&#34; @&#34;引用列表。但是如何?

2 个答案:

答案 0 :(得分:14)

您的操作方法Service应返回View。在此之后,将Service()方法的返回类型从string更改为List<string>

public List<string> Service()
{
    //Some code..........
    List<string> Dates = new List<string>();
    foreach (var row in d.Rows)
    {
        Dates.Add(row[0]);
    }
    return Dates;
}

public ActionResult GAStatistics()
{
    return View(Service());
}

在此之后参考视图中的模型:

@model List<string>
@foreach (var element in Model)
{
    <p>@Html.DisplayFor(m => element)</p>
}

在我的例子中,ActionResult看起来像这样:

public ActionResult List()
{
    List<string> Dates = new List<string>();
    for (int i = 0; i < 20; i++)
    {
        Dates.Add(String.Format("String{0}", i));
    }
    return View(Dates);
}

导致输出:

enter image description here

答案 1 :(得分:4)

您可以在视图中执行以下操作

@foreach (var item in @Model)      
{      
     <li>@item.PropertName</li>  
}