How to do nested comments in Flask/Jinja?

后端 未结 2 483
粉色の甜心
粉色の甜心 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

提交回复
热议问题