views中代碼;
創(chuàng)新互聯(lián)是一家專(zhuān)業(yè)提供南丹企業(yè)網(wǎng)站建設(shè),專(zhuān)注與成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、html5、小程序制作等業(yè)務(wù)。10年已為南丹眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。
# 有多個(gè)數(shù)據(jù)庫(kù)時(shí)
from django.db import connections
# 傳入游標(biāo),得到字典結(jié)果集
def dictfetchall(cursor):
"將游標(biāo)返回的結(jié)果保存到一個(gè)字典對(duì)象中"
desc = cursor.description
return [
dict(zip([col[0] for col in desc], row))
for row in cursor.fetchall()
]
def seldata(request):
sql ="SELECT TOP 100 * FROM EwData"
conn = connections['MyDB'] #連接的數(shù)據(jù)庫(kù)
cur = conn.cursor() #連接游標(biāo)
cur.execute(sql) #執(zhí)行SQL語(yǔ)名
data = dictfetchall(cur) #把結(jié)果用字典返回
return render(request, 'ewdata.html', {'ew': data,'fcol':data[0]})
html代碼:
{% for k in fcol %}
{{ k }}
{% endfor %}
{% for i in ew %}
{# 根據(jù)SQL中的字段名顯示數(shù)據(jù) #}
{{ i.McNo }}
{{ i.SN }}
{{ i.Model }}
{{ i.Block }}
{{ i.Floor }}
{{ i.Line }}
{{ i.Wight }}
{{ i.TestTime }}
{{ i.Abortive }}
{{ i.Checker }}
{{ i.Multiple }}
{{ i.PackSN }}
{% endfor %}