我想在我的应用中使用json.dumps()
漂亮打印 JSON。
目前,我的模板设置如下:
<table>
{% for test in list_of_decoded_json %}
<tr>
<td><pre>{{ test|safe }}</pre></td>
</tr>
{% endfor %}
</table>
其中test
是解码的JSON字符串。但是,此实现仅在一行中打印JSON字符串。
知道jinja2不支持模板中的json.dumps()
功能,如何才能获得我想要的漂亮打印布局?
答案 0 :(得分:11)
您可以创建自己的to_pretty_json
过滤器。首先,您必须将json.dumps()
包装到一个新函数中,然后将其注册为jinja filter:
import json
def to_pretty_json(value):
return json.dumps(value, sort_keys=True,
indent=4, separators=(',', ': '))
app.jinja_env.filters['tojson_pretty'] = to_pretty_json
然后在模板中使用它:
<table>
{% for test in list_of_decoded_json %}
<tr>
<td><pre>{{ test|tojson_pretty|safe }}</pre></td>
</tr>
{% endfor %}
</table>
答案 1 :(得分:1)
您可以像这样使用json.dumps:
@app.route('/')
def home():
return render_template(
'index.html',
title='Home Page',
result=json.dumps({"a":[{"o":1},{"o":2}]}, sort_keys = False, indent = 2))
并在模板中将其格式化为:
{% if test %}
<pre>{{ test }}</pre>
{% endif %}
如果这符合您的期望,您可以通过更改缩进属性的值来控制缩进。