对于块组件,是否可以在vm中使用html内容的模板?
我在html中做了很多东西,并希望html驻留在.vm中,而不是代码隐藏。
这就是我所拥有的:
public class TwoColumn : ViewComponent
{
public override void Render()
{
RenderText(@"
<div class='twoColumnLayout'>
<div class='columnOne'>");
// Context.RenderBody();
Context.RenderSection("columnOne");
RenderText(@"
</div>
<div class='columnTwo'>");
Context.RenderSection("columnTwo");
RenderText(@"
</div>
</div>
");
}
}
这是我想要的: pageWithTwoColumns.vm:
#blockcomponent(TwoColumn)
#columnOne
One
#end
#columnTwo
Two
#end
#end
twocolumn / default.vm(伪代码):
<div class="twoColumnLayout">
<div class="columnOne">
#reference-to-columnOne
</div>
<div class="columnTwo">
#reference-to-columnTwo
</div>
</div>
答案 0 :(得分:1)
ViewComponent的基类上有RenderView
方法。你可以做的是使用将视图就地写入TextWriter的重载。
只需在viewcomponent中粘贴此方法即可完成
string RenderViewInPlace(string viewTemplate)
{
var buffer = new StringBuilder();
using (var writer = new StringWriter(buffer))
{
RenderView("myview", writer);
return buffer.ToString();
}
}
答案 1 :(得分:0)
我终于找到了使用Ken建议的StringWriter技术的解决方案,但使用了不同的方法。它不是RenderView,它是RenderSection
public override void Render()
{
PropertyBag["sectionOneText"] = RenderSectionInPlace("sectionOne");
PropertyBag["sectionTwoText"] = RenderSectionInPlace("sectionTwo");
base.Render();
}
public string RenderSectionInPlace(string sectionName)
{
var stringBuilder = new StringBuilder();
Context.RenderSection(sectionName, new StringWriter(stringBuilder));
return stringBuilder.ToString();
}
模板:
<div class="twoColumnLayout">
<div class="columnOne">
$sectionOneText
</div>
<div class="columnTwo">
$sectionTwoText
</div>
</div>
如果您不介意,我会建议单轨列车的功能。 如此能够从视图模板中引用该部分会很棒:
#render(sectionOne)