这是另一个问题的分叉。我正在将一个列表传递到一个局部视图中,该视图是主视图的一部分。但是,当我查看页面时,我看到:
System.Collections.Generic.List`1[...Models.OutcomeArea] List
现在,列表被正确地呈现了,但是我不确定为什么上面的代码行显示在html中。
Index.cshtml:
@using (Html.BeginForm("Index", "Search", FormMethod.Get, new { @class = "form-inline" }))
{
@Html.Action("_Checklist")
}
_Checklist.cshtml:
@Model List<....Models.OutcomeArea>
<div class="row">
<div class="col-md-4">
<h4 class="text-center">Outcomes</h4>
<p>
@foreach (var list in Model)
{
<input type="checkbox" id="@list.ID" name="@list.ID" /> @list.Category <br />
}
</p>
</div>
</div>
SearchController:
public PartialViewResult _Checklist()
{
var outcomeAreas = db.OutcomeArea.Where(oa => oa.Category != "").GroupBy(oa => oa.Category).Select(oa => oa.FirstOrDefault());
return PartialView("_Checklist", outcomeAreas.ToList());
}
发布于 2017-03-31 13:11:00
不要紧,我把它弄好了。我需要为_Checklist.cshtml使用小写的@model。
@model List<....Models.OutcomeArea>
发布于 2017-03-31 13:11:58
哇。花了一段时间才发现漏洞。这是个棘手的问题。你的模型声明就是问题所在:
@Model List<....Models.OutcomeArea>
这应该是@model
,小写。从字面上看,您现在就是在告诉我们要打印出Model
。
https://stackoverflow.com/questions/43141461
复制相似问题