我想在 c# web 表单应用程序中使用 handlebarsjs 之类的模板。这是我需要渲染的模板的粗略外观。目前我正在使用查找和替换文本来执行此操作。但这使我的代码太乱了,尤其是在 if else 部分。
是否有任何模板库可以帮助我渲染这个..!!
<ul>
{{#each items}}
<li>
<h1>{{post_title}}</h1>
<p>{{post_description}}</p>
<small>{{post_date}}</small>
</li>
{{/each}}
</ul>
另一个例子 :
<ul>
{{#each items}}
<li>
<h1>{{post_title}}</h1>
<p>
{{#if short-desc}}
{{post_description}}
{{#else}}
{{post_long_description}}
{{#end if}}
</p>
{{#if display-date}}
<small>{{post_date}}</small>
{{#end if}}
</li>
{{/each}}
</ul>