如何在 Flask/Jinja 中进行嵌套注释?
就像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非您给出评论数据的布局方式的示例,否则我只能给出一个基本示例递归 for 循环 工作:
Unless, you give an example how your comment data is laid out, I can only give a basic example how recursive for loops work:
使用宏,它们支持递归。 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