我在Google App Engine上有一个使用Jinja2的网站,因此版本为2.6。在某些时候,我循环一个列表来产生单选按钮,我想默认检查第一个。 我的代码如下:
{% for publisher in publishers %}
<tr onclick="doNav('/spt/publisher/{{ publisher.id }}');" style="cursor: pointer;">
<td>{{ publisher.name }}</td>
<td>{{ publisher.songs }}</td>
<td><input form="export_publisher_form" onclick="event.cancelBubble = true;"
type="radio" name="export_publisher" value="{{ publisher.id }}"{% if loop.first %} checked{% endif %}></td>
</tr>
{% endfor %}
问题是,Jinja似乎没有为loop.first返回任何值,也没有返回任何循环变量(我尝试使用loop.index,loop.length和loop.cycle)。我做错了吗?
修改:publishers是一个如下所示的列表(为了清晰起见,缩进):
[{'id': 4974053165105152L, 'name': u'BMG', 'songs': 1},
{'id': 5888297083600896L, 'name': u'Emi', 'songs': 2},
{'id': 6099953071947776L, 'name': u'Ninja Tune', 'songs': 1},
{'id': 4762397176758272L, 'name': u'Sony', 'songs': 0},
{'id': 5325347130179584L, 'name': u'Universal', 'songs': 0},
{'id': 4815173734891520L, 'name': u'Warner', 'songs': 0}]
答案 0 :(得分:1)
很奇怪......你用的是什么版本的python?当我执行此代码时,我得到以下输出:
{% for publisher in heater %}
<tr onclick="doNav('/spt/publisher/{{ publisher.id }}');" style="cursor: pointer;">
<td>{{ publisher.name }}</td>
<td>{{ publisher.songs }}</td>
<td><input form="export_publisher_form" onclick="event.cancelBubble = true;"
type="radio" name="export_publisher" value="{{ publisher.id }}"{% if loop.index == 2 %} checked{% endif %}></td>
</tr>
{% endfor %}
我检查了Emi 2。你在看什么?
我还将您的数据更改为:
data = [{'id': 4974053165105152, 'name': 'BMG', 'songs': 1},
{'id': 5888297083600896, 'name': 'Emi', 'songs': 2},
{'id': 6099953071947776, 'name': 'Ninja Tune', 'songs': 1},
{'id': 4762397176758272, 'name': 'Sony', 'songs': 0},
{'id': 5325347130179584, 'name': 'Universal', 'songs': 0},
{'id': 4815173734891520, 'name': 'Warner', 'songs': 0}]