gpt4 book ai didi

python - 如何向我的 td 添加增量 ID?

转载 作者:行者123 更新时间:2023-11-28 05:13:00 24 4
gpt4 key购买 nike

我的 html 文件生成一个表格:

{% for resp in results %}
<tr style="counter-increment: count">
<td>{{ resp }}</td>
<td>{{ resp.Question_id.Statement }}</td>
</tr>
{% endfor %}

每次生成新行时如何为第一个 td 分配一个 id?

最佳答案

使用forloop.counter template var :

{% for resp in results %}
<tr style="counter-increment: {{ forloop.counter }}">
<td>{{ resp }}</td>
<td>{{ resp.Question_id.Statement }}</td>
</tr>
{% endfor %}

关于python - 如何向我的 td 添加增量 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51538588/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com