html模版语法
时间:2020-07-07 09:23:38
收藏:0
阅读:42
1、for循环
表示渲染{% for %}与{% endfor %}之间的所有内容,与python中的for循环类似。
{% for student in students %}
<li>{{student.name}}</li>
{% endfor %}
原文:https://www.cnblogs.com/lxmtx/p/13258805.html
评论(0)