是否存在確定如何在模板中編寫代碼的編碼風格?
這樣:Django模板編碼風格
<tbody>
{% for row in body_rows %}
<tr>
{% for cell in row %}
<td>{{ cell.val }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
這樣的:
<tbody>
{% for row in body_rows %}
<tr>
{% for cell in row %}
<td>{{ cell.val }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
或本:
<tbody>
{% for row in body_rows %}
<tr>
{% for cell in row %}
<td>{{ cell.val }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
tldr:「第3個,長答案:你選擇了。」 –