我有一个新的 MVC4 项目。
在我的 _Layout.cshtml 中,我有以下内容:
<div class="container maincontent">
<div class="row">
<div class="span2 hidden-phone">
@*
In here is a RenderSection featured. This is declared in a section tag in Views\Home\Index.cshtml.
If this is static text for the whole site, don't render a section, just add it in.
You should also be able to use @Html.Partial("_LoginPartial") for example.
This _LoginPartial will need to be a cshtml in the Shared Views folder.
*@
@{ Html.RenderPartial("_NewsFeed"); }
</div>
<div class="span10">
@RenderBody()
</div>
</div>
</div>
我的部分观点是
<div class="row newsfeed">
NEWS FEED
@foreach (var item in ViewData["newsfeed"] as IEnumerable<NewsItem>)
{
<div class="span2 newsfeeditem">
<h3>@item.NewsTitle</h3>
<p>@item.NewsContent</p>
@Html.ActionLink("More", "NewsItem", "News", new {id=@item.Id}, null)
</div>
}
有没有办法让部分视图进行数据调用。目前,我必须在我的控制器中为每个操作执行以下操作:
ViewData["newsfeed"] = _db.NewsItems.OrderByDescending(u => u.DateAdded).Where(u => u.IsLive == true).Take(4);
return View(ViewData);
我在已经将模型传递给视图的地方陷入困境,因为我也无法将其传递给它。
我知道我做错了什么,只是不确定是什么或在哪里。
我只想能够在我的 _layout 中进行渲染调用,然后在局部视图中知道收集数据然后渲染自己。还是我弄错了棍子的一端?我想我正在尝试像 ascx 一样使用它......