如何在 Flask/Jinja 中进行嵌套注释?

发布于 2024-11-28 15:19:37 字数 179 浏览 2 评论 0原文

就像 Hacker News 和 Reddit 上的评论一样。我查看了 Jinja 的文档,但找不到任何有关递归的内容(我认为这就是此类事情的完成方式)。有什么想法吗?

提前致谢。

编辑:

我已经有了数据(来自 API),并且注释是有子对象的对象。我只需要知道如何在 Jinja 中递归渲染孩子。

Like the comments in Hacker News and Reddit. I've looked at Jinja's docs but I can't find anything about recursion (which I assume is how this sort of thing is done). Any ideas?

Thanks in advance.

EDIT:

I already have the data (from an API), and the comments are objects which have children. I just need to know how to render the children recursively in Jinja.

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

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

发布评论

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

评论(2

江湖正好 2024-12-05 15:19:37

除非您给出评论数据的布局方式的示例,否则我只能给出一个基本示例递归 for 循环 工作:

{%- for item in comments recursive %}
    <li>{{ item.text }}</li>
    {%- if item.children -%}
        <ul class="children">{{ loop(item.children) }}</ul>
    {%- endif %}</li>
{%- endfor %}

Unless, you give an example how your comment data is laid out, I can only give a basic example how recursive for loops work:

{%- for item in comments recursive %}
    <li>{{ item.text }}</li>
    {%- if item.children -%}
        <ul class="children">{{ loop(item.children) }}</ul>
    {%- endif %}</li>
{%- endfor %}
匿名。 2024-12-05 15:19:37

使用宏,它们支持递归。 http://jinja.pocoo.org/docs/templates/#macros

编辑: for 循环也支持递归,这也可以。 http://jinja.pocoo.org/docs/templates/#for

Use macros, they support recursion. http://jinja.pocoo.org/docs/templates/#macros

Edit: for loops also support recursion, this would work as well. http://jinja.pocoo.org/docs/templates/#for

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