Django中的 模版语法使用方法总结

利用模版语法,循环展示其值

 {% for user in user_list %}   <!--循环头-->
    <tr>
     <td>{{ user.id }}</td>
     <td>{{ user.names }}</td>
    </tr>
 {% endfor %}   <!--循环尾-->

猜你喜欢

转载自blog.csdn.net/weixin_42329277/article/details/81384209