How to do nested comments in Flask/Jinja?

后端 未结 2 482
粉色の甜心
粉色の甜心 2021-02-10 14:54

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 ide

相关标签:
2条回答
  • 2021-02-10 15:13

    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

    0 讨论(0)
  • 2021-02-10 15:17

    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 %}
    
    0 讨论(0)
提交回复
热议问题