English 中文(简体)
a. 使用“距离”的圆环式发动机模板
原标题:
  • 时间:2009-06-02 18:57:17
  •  标签:

i) 立即开展一个 app项目,在我的模板中,我想要做像样的事情。

{% for i in range(0, len(somelist)) %}
  {{ somelist[i] }} {{ otherlist[i] }}
{% endfor %}

i 使用 for子进行审判。 查阅清单的项目也遭到了反对,但两者都没有结果。 是否有任何建议?

regards

最佳回答

否则,你可能想要的是把你重新通过的数据改为模板,以便把一些清单和其他清单合并成一个单一清单:

combined_list = zip(somelist, otherlist)
...
{% for item in combined_list %}
    {{ item.0 }} {{ item.1 }}
{% endfor %}
问题回答

暂无回答




相关问题
热门标签