欢迎来到ZeroAO的博客

竹杖芒鞋轻胜马,谁怕?一蓑烟雨任平生。
扩大
缩小

6_Django查询

1、  在根urls下添加student/

path('student/', include('stu.urls'))

2、在子路由添

url(r'^show/', views.show_view)

3、  在views添加

def show_view(request):
    stus = Student.objects.all()
    return render(request, 'show.html',{'students': stus})

 

4、在show.html里添加

 <table border="1" cellspacing="0" width="500px">
    <tr>
        <th>编号</th>
        <th>姓名</th>
        <th>密码</th>
    </tr>
    {% for stu in students %}  {#循环输出#}
    <tr>
        {#{{ 调用值 }}#}
        <td>{{ stu.id }}</td>
        <td>{{ stu.sname }}</td>
        <td>{{ stu.spwd }}</td>
    </tr>
    {% endfor %}
</table>

 

5、运行

 

 

 

6、修改

<td>{{ stu.id }}</td>

为编号不被删除数据影响,改为

 <td>{{ forloop.counter }}</td>

 

posted on 2020-05-10 23:08  Zeroao  阅读(177)  评论(0编辑  收藏  举报

导航

Live2D