如何获取传递给 Jinja2 模板的所有参数的列表?
如果我有一个非常通用的模板并且我想列出所有传递的参数(出于调试原因),有没有办法做到这一点?
就像是:
mytemplate.html
{% for argument in LIST_OF_ARGUMENT %}
{{ argument }}<br>
{% endfor %}
所以在视图中/foobar
如果我以这种方式调用模板:
return render_template('mytemplate.html', form=myform, foo='bar')
我明白了
the_content_of_form <br>
bar <br>
而如果我以这种方式调用模板:
return render_template('mytemplate.html', lorem=ipsum, fooooo='barrrrr')
我明白了
the_content_of_lorem <br>
barrrrr <br>