将 @section 放入 @if .net mvc 3

发布于 2024-12-10 02:49:32 字数 255 浏览 0 评论 0原文

我似乎无法让它发挥作用。

@if (isReal)
{
    @section Navigation{
        @{Html.RenderPartial("NavigationForInput");}
    }
}

这不起作用,因为它说“一旦在代码中,你就不需要@ blah blah blah”,

但是,当我从节前面删除@时,它想使用节作为类型变量。

我怎样才能有条件地显示该部分?

I can not seem to get this to work.

@if (isReal)
{
    @section Navigation{
        @{Html.RenderPartial("NavigationForInput");}
    }
}

that doesn't work because it says "once inside code you dont' need @ blah blah blah"

but, when I remove the @ from in front of section, it wants to use section as a type variable.

how can I only show that section conditionally?

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

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

发布评论

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

评论(3

亚希 2024-12-17 02:49:32

根据您的布局是否有未定义部分的替代方案,您可以反转 @if@section

@section Navigation{
{
    @if (isReal)
        @{Html.RenderPartial("NavigationForInput");}
    } 
}

如果您只想省略导航,这应该是很好,但如果您在布局中使用 IsSectionDefined("Navigation") ,它将不起作用,因为它始终返回 true。

Depending if your Layout has an alternative for undefined sections or not, you could just reverse the @if and @section

@section Navigation{
{
    @if (isReal)
        @{Html.RenderPartial("NavigationForInput");}
    } 
}

If you just want to leave out the nav, this should be fine, but it won't work if you are using IsSectionDefined("Navigation") in your layout, as it will always return true.

∞梦里开花 2024-12-17 02:49:32

想法:

@if (Condition)
{
    <text>
    @section SectionName {

    }
    </text>
}

这是代码:

@if (isReal)
{
    <text>
    @section Navigation{
        @{Html.RenderPartial("NavigationForInput");}
    }
    </text>
}

快乐编码!

The idea:

@if (Condition)
{
    <text>
    @section SectionName {

    }
    </text>
}

Here is the code:

@if (isReal)
{
    <text>
    @section Navigation{
        @{Html.RenderPartial("NavigationForInput");}
    }
    </text>
}

Happy coding!

可爱暴击 2024-12-17 02:49:32

@section Name {
}

构造用于定义节。要渲染某个部分,请使用 RenderSection () 方法。

The

@section Name {
}

construct is used for defining a section. To render a section you use the RenderSection() method.

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