在django的模板中,有forloop这一模板变量,颇似php Smarty中的foreach.customers, Smarty foreach如下: {foreach name=customers from=$custid item=curr_id}{$smarty.foreach.customers.iteration} <-- Tells you which item you are at (integer){$smarty.foreach.customers.first} <--…
django模板标签{% for %}的使用(含forloop用法) {% %}虽然这个是写在html中,但是这里边写的是服务端代码 在django模板标签中,{% for %} 标签用于迭代序列中的各个元素. 与 Python 的 for 语句类似,语法是 for X in Y ,其中 Y 是要迭代的序列, X 是单次循环中使用的变量.每次迭代时,模板系统会渲染 {% for %} 和 {% endfor %} 之间的内容. 1. 可以使用下述模板显示 athlete_list 变量中的运…