RenderAction 布局中模型的列表

发布于 2024-11-17 21:07:06 字数 438 浏览 5 评论 0原文

所以我想在 _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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅气称霸 2024-11-24 21:07:06

在 View 中将布局设置为 null

@{ Layout = null; }

Set the layout to null in the View

@{ Layout = null; }
不忘初心 2024-11-24 21:07:06

在你的视图中尝试:

@{Html.RenderAction("Show","News");}

In your View try:

@{Html.RenderAction("Show","News");}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文