再次学习Django,实现sql的页面显示及条件查询
Posted 糖饼好吃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了再次学习Django,实现sql的页面显示及条件查询相关的知识,希望对你有一定的参考价值。
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的页面显示及条件查询的主要内容,如果未能解决你的问题,请参考以下文章