.Net Razor将原始HTML传递给@helper宏

前端之家收集整理的这篇文章主要介绍了.Net Razor将原始HTML传递给@helper宏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将原始html传递给@helper宏…这可能吗?例如:
@helper oneColumn(string content) {
<div class="row">               
  <div class="twelve columns">
    @content                    
  </div>
</div>
}

@put.oneColumn(
  <h1 id="page-heading">HELLO WORLD!</h1>
)

解决方法

@helper oneColumn(Func<dynamic,HelperResult> content) {
<div class="row">               
  <div class="twelve columns">
    @content(null)                    
  </div>
</div>
}

@put.oneColumn( @<h1 id="page-heading">HELLO WORLD!</h1>)
原文链接:https://www.f2er.com/html/228569.html

猜你在找的HTML相关文章