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>