我遇到了一些麻烦。我的观点如下
@model IEnumerable<Tipstr.Models.Posts>
<div class ="mainC">
<div class = "leftContent">
@Html.Partial("_LeaderboardPartial")
</div>
<div class = "rightContent">
@foreach (var item in Model) {
<h1 class ="ptitle">
@Html.DisplayFor(modelItem => item.title)
</h1>
<p class ="date">
posted @Html.DisplayFor(modelItem => item.date)
</p>
<p class ="post">
@Html.DisplayFor(modelItem => item.body)
</p>
<hr />
}
</div>
</div>
<div class="Cpad">
<br class="clear" /><div class="Cbottom"></div><div class="Cbottomright">
</div>
</div>
我有一个部分的_LeaderboardPartial,如图所示
@model IEnumerable<Tipstr.Models.Leaderboard>
<table id="pattern-style-a" summary="Meeting Results">
<thead>
<tr>
<th scope="col">Username</th>
<th scope="col">Tipster Score</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model) {
<tr>
<td>@Html.DisplayFor(modelItem => item.userName)</td>
<td> @Html.DisplayFor(modelItem => item.score)</td>
</tr>
}
</tbody>
</table>
我似乎无法让它工作我觉得它与从布局传递一个模型然后从局部传递另一个模型有关。我怎么能绕过这个?我收到以下错误:
传递到字典中的模型项的类型为'System.Collections.Generic.List 1[Tipstr.Models.Posts]', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable
1 [Tipstr.Models.Leaderboard]'。
答案 0 :(得分:1)
正如@David Tansey所说,你可以拥有一个包含对这两种类型的引用的视图模型
public class MyViewModel
{
public MyViewModel(IEnumerable<Posts> posts,
IEnumerable<Leaderboard> leaderboard)
{
//you can add null checks to ensure view model invariants
this.Posts = posts;
this.Leaderboard = leaderboard;
}
public IEnumerable<Posts> Posts { get; private set; }
public IEnumerable<Leaderboard> Leaderboard{ get; private set; }
}
在主视图中,您将像这样调用Html.Partial
@model MyViewModel
<div class ="mainC">
<div class = "leftContent">
@Html.Partial("_LeaderboardPartial", this.Model.Leaderboard)
</div>
....
如果你这样做,你应该改变foreach来迭代Model.Posts而不是Model
@foreach (var item in this.Model.Posts)
答案 1 :(得分:0)
这行代码:
第一个视图中的 @Html.Partial("_LeaderboardPartial")
意味着将自己的模型IEnumerable<Tipstr.Models.Posts>
发送给部分。
部分需要引用类型IEnumerable<Tipstr.Models.Leaderboard>
。
也许您需要一个视图模型,其中包含对这些类型之一的引用?