for循环内怎么给每一项加序号
来源:5-4 网易新闻前台
慕婉清7059351
2019-08-13
请问老师。怎么在for循环内怎么给每一项加序号
{% for n in pro %}
<tr>
<td>1</td>
<td>{{ n.RollNum }}</a></td>
<td>{% if n.CastingDate != None %}
{{ n.CastingDate.strftime('%m-%d') }}
{% endif %}</td>
<td>{% if n.Roughcast != None %}
{{ n.Roughcast.strftime('%m-%d') }}
{% endif %}</td>
</tr>
{% endfor %}
写回答
1回答
-
在for循环中直接使用
{{ loop.index }}
可参考文档:http://docs.jinkan.org/docs/jinja2/templates.html#for
022019-08-13
Python操作三大主流数据库-MySQL+MongoDB+Redis
一次实战同时掌握Python操作MySQL,MongoDB,Redis 三大数据库使用技巧
2024 学习 · 376 问题
相似问题