以下是背景:
这是我的第一个ASP.NET MVC Web应用程序。
在类别列表中,我单击一个类别以在新视图中查看有关它的所有信息。
从这个视图中,我显示了它的名称,描述和此类别中的产品数量。
在此之下,我想显示此类别中的所有产品。
我尝试了Html.Action()
方法。
但是,当我想迭代foreach
语句时,Visual Studio告诉我Type 'System.Web.Mvc.MvcHtmlString' is not enumerable
。
以下是我的观点(有关类别的详细信息):
@model UlysseCMS.Models.category
@{
ViewBag.Title = "Details about "+ Model.category_name + " category";
var nbProducts = Html.Action("GetNumberOfProductByCategory", "Product", Model.category_id);
var productsList = Html.Action("GetListOfProductsByCategory", "Product", Model.category_id);
}
<div>
<span class="leader">
<span class="mif-chevron-thin-right fg-teal"></span>
<span>@Html.ActionLink("Categories", "Index")</span>
<span class="mif-chevron-thin-right fg-teal"></span>
<span>@Model.category_name</span>
<span class="mif-chevron-right fg-teal"></span>
<span>details</span>
</span>
</div>
<br />
<hr class="bg-teal" />
<br />
<div class="margin30">
<div class="flex-grid">
<div class="row cells7">
<div class="cell colspan3 offset1 sub-header">
Category name :
</div>
<div class="cell colspan4">
@Model.category_name
</div>
</div> <br/>
<div class="row cells7">
<div class="cell colspan3 offset1 sub-header">
Category description :
</div> <br/>
<div class="cell colspan4">
@Model.category_description
</div>
</div> <br/>
<div class="row cells7">
<div class="cell colspan3 offset1 sub-header">
Number of products in this category :
</div>
<div class="cell colspan4">
@nbProducts
</div>
</div>
</div>
</div>
@foreach (var item in productsList)
{
}
以下是GetListOfProductsByCategory()
:
ProductController
方法
public IEnumerable<product> GetListOfProductsByCategory(int id)
{
return db.product.Where(x => x.product_category_id == id);
}
我仍然继续找到一个使用IEnumerable
投射的解决方案。
谢谢,
地狱猫。
答案 0 :(得分:1)
@ Html.Action的结果是一个视图。 当你在控制器中有一个动作时,这个动作通常会返回一个视图,而渲染的视图是Html.Action的结果,为了显示它你需要在html之前使用@。 您应该编写如下代码:
public ActionResult GetListOfProductsByCategory(int id)
{
return View(db.product.Where(x => x.product_category_id == id));
}
然后右键单击View并从菜单中选择Add View,然后创建局部视图。 在局部视图中,您可以枚举列表并创建渲染输出。 最后,无论您想要显示渲染列表,只需调用:
@Html.Action("GetListOfProductsByCategory",id)
创建视图时,您需要选择模型和视图类型作为列表,以便在视图的顶部进行:
@model IEnumerable<product>
然后你必须使用foreach,如下所示:
@foreach (var item in Model)
{
}
答案 1 :(得分:0)
好的我修改了我的部分视图(GetListOfProductsByCategory):
@model IEnumerable<UlysseCMS.Models.product>
@foreach (var item in Model)
{
<a href="@Url.Action("Details", new { id = item.product_id })">
<div class="tile tile-wide bg-white block-shadow margin30" data-role="tile">
<div class="tile-content slide-up-2">
<div class="slide fg-darkTeal">
<span class="sub-leader" style="padding-left: 5px;">@Html.DisplayFor(modelItem => item.product_name)</span>
</div>
</div>
</div>
</a>
}
在我的类别详细信息视图中,我显示如下产品:
@Html.Action("GetListOfProductsByCategory", "Product", Model.category_id)
现在对Mehrdad Babaki的回答是好的。