使用 StringTemplate 渲染列表的列表

发布于 2024-10-19 04:12:56 字数 348 浏览 1 评论 0原文

请帮我用 StringTemplate 渲染以下 Java 结构:

List<List<String>> listOfListsOfStrings;

输出应如下所示(其中 ListXStringY 是位置 X、Y 中包含的字符串):

  • List1String1、List1String2、...
  • List2String1、List2String2、List2String3、...
  • .. .ListNString1
  • , ...

不同二级列表中的字符串数量可以不同。谢谢你!

Please help me to render the following Java structure with StringTemplate:

List<List<String>> listOfListsOfStrings;

The output should be as follows (where ListXStringY is a string contained in position X, Y):

  • List1String1, List1String2, ...
  • List2String1, List2String2, List2String3, ...
  • ...
  • ListNString1, ...

The number of strings in different second-level lists can vary. Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

婴鹅 2024-10-26 04:12:56

尝试使用嵌套迭代器:

$list:{<li>$it:{$it$,}
lt;/li>}$

应该打印:

<li>List1String1,List1String2,</li><li>List2String1,List2String2,List2String3,</li>

Try using nested iterators:

$list:{<li>$it:{$it$,}
lt;/li>}$

Should print:

<li>List1String1,List1String2,</li><li>List2String1,List2String2,List2String3,</li>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文