我一直收到错误信息:
..但是这个字典需要一个类型为..
的模型项
我的观点我试图将部分视图放入:
@using TheNovelMachine.Models
@model TheNovelMachine.Models.Account
@{
ViewBag.Title = "Details";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<img id="homeimage" src="~/Image/front-page-book.jpg" alt="The Novel Machine" />
<div id="text" class="col-lg-12">
<h1>Profile</h1>
<div class="col-lg-6 no-gutter">
<h2>@Html.DisplayFor(model => model.Username)</h2>
<h4>@Html.DisplayFor(model => model.FullName)</h4>
<p>@Html.DisplayFor(model => model.Email)</p>
</div>
<div class="col-lg-6 pull-right text-right no-gutter">
<img class="profilepic" src="~/Image/@(Html.DisplayFor(model => model.Username)).jpg" />
</div>
<div class="col-lg-12 no-gutter">
<hr/>
<h4>@Html.DisplayFor(model => model.Username)'s Novels</h4>
@{
Html.RenderPartial("~/Views/Shared/_NovelProfile.cshtml");
}
</div>
</div>
部分视图是:
@using System.Web.DynamicData
@using TheNovelMachine.Models
@model IEnumerable<TheNovelMachine.Models.Novel>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Title)
</th>
<th>
@Html.DisplayNameFor(model => model.Genre)
</th>
<th>
@Html.DisplayNameFor(model => model.Abstract)
</th>
<th>
@Html.DisplayNameFor(model => model.Privacy)
</th>
<th>
@Html.DisplayNameFor(model => model.AccountId)
</th>
</tr>
@foreach (var item in Model.Where(i => i.AccountId.ToString() == Url.RequestContext.RouteData.Values["id"].ToString())) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.Genre)
</td>
<td>
@Html.DisplayFor(modelItem => item.Abstract)
</td>
<td>
@Html.DisplayFor(modelItem => item.Privacy)
</td>
<td>
@Html.DisplayFor(modelItem => item.AccountId)
</td>
</tr>
}
</table>
答案 0 :(得分:3)
你的部分视图期待这个模型(你在部分视图的顶部声明它)
@model IEnumerable<TheNovelMachine.Models.Novel>
您应该在此行中传递该模型:
@{
Html.RenderPartial("~/Views/Shared/_NovelProfile.cshtml", Model.Novels);
}
这应该有效,假设Model.Novels
属于此类型IEnumerable<TheNovelMachine.Models.Novel>
,或者可以将其转换为该类型。
Here你有一个更详细的例子,但想法是一样的。如果您不将此作为参数传递,则无法构建部分视图(这就是您收到该错误的原因)。
MSDN此处有关RenderPartial方法的文档。
答案 1 :(得分:1)
所以,即使你需要做什么还有其他答案,这就是实际发生的事情,所以你知道将来。
@Html.RenderPartial("_NovelProfile");
与以下代码相同:
@Html.RenderPartial("_NovelProfile", Model)