我需要显示实体Items
的一些子对象(Request
)。而不是请求我发现传递包含比原始请求实体更多信息的视图更好。这个视图我调用了RequestInfo
,它还包含原始请求Id
。
然后在MVC视图中我做了:
@model CAPS.RequestInfo
...
@Html.RenderAction("Items", new { requestId = Model.Id })
渲染:
public PartialViewResult Items(int requestId)
{
using (var db = new DbContext())
{
var items = db.Items.Where(x => x.Request.Id == requestId);
return PartialView("_Items", items);
}
}
哪个会显示通用列表:
@model IEnumerable<CAPS.Item>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.Code)
</th>
<th>
@Html.DisplayNameFor(model => model.Description)
</th>
<th>
@Html.DisplayNameFor(model => model.Qty)
</th>
<th>
@Html.DisplayNameFor(model => model.Value)
</th>
<th>
@Html.DisplayNameFor(model => model.Type)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Code)
</td>
<td>
@Html.DisplayFor(modelItem => item.Description)
</td>
<td>
@Html.DisplayFor(modelItem => item.Qty)
</td>
<td>
@Html.DisplayFor(modelItem => item.Value)
</td>
<td>
@Html.DisplayFor(modelItem => item.Type)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.Id }) |
@Html.ActionLink("Details", "Details", new { id=item.Id }) |
@Html.ActionLink("Delete", "Delete", new { id=item.Id })
</td>
</tr>
}
</table>
但是我在RenderAction
行上收到编译错误“无法将'void'转换为'object'”任何想法?
答案 0 :(得分:47)
调用Render方法时需要使用此语法:
@{ Html.RenderAction("Items", new { requestId = Model.Id }); }
没有花括号的@syntax
需要一个返回类型,该类型会呈现给页面。为了调用从页面返回void的方法,必须用大括号包装调用。
请参阅以下链接以获得更深入的解释。
http://haacked.com/archive/2009/11/18/aspnetmvc2-render-action.aspx
答案 1 :(得分:15)
有用的替代方案:
@model CAPS.RequestInfo
...
@Html.Action("Items", new { requestId = Model.Id })
此代码返回MvcHtmlString。使用partialview和查看结果。不需要{}字符。