我正在尝试使用jinja2模板来呈现json文件。结构类似于:
"rows": [
{% for product in products %}
{
"id": {{ loop.index }},
"name": {{ product }},
"available": true
}{% if not loop.last %},
{% else %}
{% endif %}
{% endfor %}
],
[...]
问题在于输出json呈现为:
"rows": [
{
"id": {{ loop.index }},
"name": {{ product }},
"available": true
},
{
"id": {{ loop.index }},
"name": {{ product }},
"available": true
}
],
[...]
请注意每行第一行 {中的缩进。我该怎么解决?
谢谢。
答案 0 :(得分:0)