RenderAction 布局中模型的列表
所以我想在 _Layout.cshtml 中放入新闻站点列表
我在其控制器中有一个新闻模型和一个显示操作,我想将其与 RenderAction 一起放入其中。
@Html.RenderAction("Show","News");
似乎不起作用。 但是 http://localhost:49295/News/Show/ 确实有效 我应该使用 renderaction 对吗?
编辑
@{Html.RenderAction("Show","News");}
stackoverflowerror,可能是因为我只是在布局本身中放置了一个使用布局的操作?如何不使用此视图的默认布局?
So I want to put a list of newsitems in _Layout.cshtml
I have a News model and a Show Action in its controller, and I want to put it in there with a RenderAction.
@Html.RenderAction("Show","News");
Does not seem to work.
But http://localhost:49295/News/Show/ does work
I should be using renderaction right?
EDIT
@{Html.RenderAction("Show","News");}
stackoverflowerror, probably because I just put an action that uses the layout, in the layout itself? How do I not use the default layout for this view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 View 中将布局设置为 null
Set the layout to null in the View
在你的视图中尝试:
In your View try: