Play框架:如何渲染“嵌套”列表

发布于 2025-01-07 18:57:59 字数 585 浏览 0 评论 0原文

渲染嵌套列表的问题:

我有一个类:

public MyRecord 
{
  String id;
  List<String > tags;
}

我有一个名为“records”的对象,其类型为:“MyRecord”列表。

我正在尝试使用模板以 JSON 形式呈现 it。

这就是我想要做的:

#{list records, as:'record'}
        {"c":[
            {"v":"${record.id}"},
#{list ${record.list}, as:'tag'}
    {"v":"${tag}"}
#{/list}           
        ]}
#{/list}

不幸的是 ${record.list} 不受支持,并且我未能找到可行的解决方案。

当然,我可以向 MyRecord 添加一个方法,它将“标签”“渲染”为所需的格式,并使用此方法而不是内部的 #{list},但这不符合模板方法。如果这有助于实现目标,我愿意接受修改数据结构的想法。

谢谢 最大限度

Issue with rendering of nested lists:

I have a class:

public MyRecord 
{
  String id;
  List<String > tags;
}

I have an object named 'records' which is of a type: List of 'MyRecord'.

I am trying to render itin JSON, using a template.

This is what I would like to do:

#{list records, as:'record'}
        {"c":[
            {"v":"${record.id}"},
#{list ${record.list}, as:'tag'}
    {"v":"${tag}"}
#{/list}           
        ]}
#{/list}

Unfortunately ${record.list} is not supported, and I failed to find a working solution.

Of course, I can add a method to MyRecord which will "render" the "tags" into the needed format, and use this method instead of the inner #{list}, but that's isn't in line with the templates approach. I am open to ideas to modify the data structure, if this will help to achieve the goal.

Thanks
Max

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

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

发布评论

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

评论(1

东北女汉子 2025-01-14 18:57:59

${record.list} 应该是记录。标签

#{list items:records, as:'record'}
 {"c":[{"v":"${record.id}"},
   #{list items:record.tags, as:'tag'}
       {"v":"${tag}"}
   #{/list}           
  ]}
#{/list}

${record.list} should be record.tags

#{list items:records, as:'record'}
 {"c":[{"v":"${record.id}"},
   #{list items:record.tags, as:'tag'}
       {"v":"${tag}"}
   #{/list}           
  ]}
#{/list}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文