前端之家收集整理的这篇文章主要介绍了
c# – StringTemplate中的嵌套循环,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有兴趣使用StringTemplate模板引擎编写类似于嵌套循环的东西.
在C#中有一个HashTable,其中每个Key包含Document对象列表,每个Document都有一个
标题和源.我想列出电子
邮件的开头,每个来源的文档
标题摘要.
<h1>Summary</h1>
<h2>Source A</h2>
<ul>
<li>title 1</li>
<li>title 2</li>
</ul>
<h2>Source B</h2>
<ul>
<li>title 3</li>
<li>title 4</li>
</ul>
使用StringTemplate实现此目的的最佳方法是什么?
假设您已将这些转换为适当的数据结构 – 具有getName和getDocuments
方法的Source类,以及具有getTitle
方法的Document类,它将如下所示:
$
sources:
{
source|
<h2>Source $source.name$</h2>
$
source.documents:
{
document|
<li>title $document.title$</li>
}
$
}
$
原文链接:https://www.f2er.com/csharp/100051.html