带有 Razor 视图引擎的 MvcContrib MenuBuilder

发布于 2024-10-05 08:26:58 字数 799 浏览 7 评论 0原文

下面的代码(在 .cshtml 文件内)导致菜单在文档流之外呈现,即 html 标记上方源代码中的第一行

@{
    Html.Menu(
        Menu.Begin(new[]
                        {
                            Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
                            Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
                        }));
}

然而,在 webforms 项目中,以下工作正常:

<% Html.Menu(
        Menu.Begin(new[]
                        {
                            Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
                            Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
                        })); %>

我相信这两种语法应该产生在相同的结果中。

The below code (inside a .cshtml file) causes the menu to render outside of the flow of the document i.e. The first lines in the source above the html tag

@{
    Html.Menu(
        Menu.Begin(new[]
                        {
                            Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
                            Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
                        }));
}

Yet in a webforms project, the following works:

<% Html.Menu(
        Menu.Begin(new[]
                        {
                            Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
                            Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
                        })); %>

I believe the two syntaxes should result in the same outcome.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

世界如花海般美丽 2024-10-12 08:26:58
@Html.Menu(
        Menu.Begin(new[]
                        {
                            Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
                            Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
                        }))

这应该可以..删除大括号 {}

@Html.Menu(
        Menu.Begin(new[]
                        {
                            Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
                            Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
                        }))

That should work.. Removing the braces {}

不顾 2024-10-12 08:26:58

您应该认为 @( ) 相当于 <%= %>而不是 @{ } 转换为剃刀时。

You should think of @( ) being the equivalent of <%= %> rather than @{ } when converting to razor.

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