我有以下布局模板:
<div id="columns" class="@View.LayoutClass">
<div id="mainColWrap">
<div id="mainCol">
@RenderBody()
</div>
</div>
@if (View.ShowLeftCol){
<div id="leftCol">
@RenderSection("LeftCol", required: false)
</div>
}
@if (View.ShowRightCol){
<div id="rightCol">
@RenderSection("RightCol", required: false)
</div>
}
</div>
如果View.ShowLeftCol或View.ShowRightCol设置为false,则会出现以下错误:
以下部分已定义,但尚未针对布局页面“〜/ Views / Shared / _Layout.cshtml”:“RightCol”进行渲染。
我正在尝试使用单个布局模板,而不是尝试在运行时动态选择模板。有没有办法忽略这个错误并继续渲染?任何人都可以想到另一种实现方式,这将允许我用Razor动态显示/隐藏列吗?
谢谢!
答案 0 :(得分:31)
在有效的ASP.net论坛上提出了建议。
基本上,如果我在视图模板中定义@section LeftCol但是没有在我的布局中运行任何调用RenderSection的代码,我会得到错误,因为当View.ShowLeftCol为false时它不会被调用。建议是添加一个else块并基本上丢弃LeftCol部分中的任何内容。
@if (View.ShowLeftCol)
{
<div id="leftCol">
@RenderSection("LeftCol", false)
</div>
}
else
{
WriteTo(new StringWriter(), RenderSection("LeftCol", false));
}
基于对记忆的关注,我决定测试以下内容。确实它也有效。
@if (showLeft)
{
<section id="leftcol">
<div class="pad">
@RenderSection("LeftColumn", false)
</div>
</section>
}
else
{
WriteTo(TextWriter.Null, RenderSection("LeftColumn", false));
}
此外,在我的页面顶部,这是我对showLeft / showRight的新逻辑:
bool showLeft = IsSectionDefined("LeftColumn");
bool showRight = IsSectionDefined("RightColumn");
bool? hideLeft = (bool?)ViewBag.HideLeft;
bool? hideRight = (bool?)ViewBag.HideRight;
if (hideLeft.HasValue && hideLeft.Value == true) { showLeft = false; }
if (hideRight.HasValue && hideRight.Value == true) { showRight = false; }
其他人说这对他们不起作用,但它对我来说就像是一种魅力。
答案 1 :(得分:2)
@using System.Reflection;
@{
HashSet<string> renderedSections = typeof(WebPageBase).GetField("_renderedSections", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.GetField).GetValue(this) as HashSet<string>;
}
然后向该哈希集添加您想要呈现的任何部分名称。
答案 2 :(得分:0)
@if (View.ShowLeftCol)
{
<div id="leftCol">
@RenderSection("LeftCol", false)
</div>
}
else{ <!-- @RenderSection("LeftCol", false) --> }
更简单的方式!!