Jinja2 中模板的动态使用
我必须遵循以下场景:
python 字典的 python 列表 l = [a,b,c,...,n]
列表的每个元素都是一个Python字典,看起来像这样:
d = {}
d['type'] = 5
d['content'] = 'somestring'
现在我希望所有字典作为主模板中的列表。然而,每个字典的内容应该由子模板呈现。使用哪个模板来渲染内容应该由字典的类型变量来定义。
关于如何使用 Jinja2 完成此操作的任何提示(如果有帮助的话,我正在通过 Flask 使用它..)
谢谢!
I have to following scenario:
a python list of python dictionaries l = [a,b,c,...,n]
each element of the list is a python dictionary that looks something like this:
d = {}
d['type'] = 5
d['content'] = 'somestring'
Now i want all dictionaries as a list in in a main template. However each dictionary's content should be rendered by a child template. Which template to use to render the content should be defined by the type variable of the dictionary.
Any hints on how this can be accomplished using Jinja2 (I'm using it via Flask if that helps..)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有人需要它:
那么在模板中您可以像这样访问内容:
感谢 freenode 上 #pocoo 频道的 donri !
If anyone needs it:
then in the template you can access the content like so:
Thanks to donri from the #pocoo channel on freenode !