码迷,mamicode.com
首页 > 数据库 > 详细

再次学习Django,实现sql的页面显示及条件查询

时间:2019-04-23 12:38:59      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:ble   post   rom   global   ret   return   pos   select   django   

view.py
def search_post(request):
global ctx_2
cursor.execute(‘select * from testdj_test‘)
#ctx = {}
ctx_2 = dictfetchall(cursor)
return render(request, "post.html", {‘results‘: ctx_2})


html
<table class="table">
{% for item in results %}
<tr>
<td>{{item.name}}</td>
<td>{{item.age}}</td>
<td>{{item.course}}</td>
</tr>
{%endfor%}
</table>


再次学习Django,实现sql的页面显示及条件查询

标签:ble   post   rom   global   ret   return   pos   select   django   

原文地址:https://www.cnblogs.com/tangbinghaochi/p/10755608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!