您好,登錄后才能下訂單哦!
views中代碼;
# 有多個數據庫時
from django.db import connections
# 傳入游標,得到字典結果集
def dictfetchall(cursor):
"將游標返回的結果保存到一個字典對象中"
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'] #連接的數據庫
cur = conn.cursor() #連接游標
cur.execute(sql) #執行SQL語名
data = dictfetchall(cur) #把結果用字典返回
return render(request, 'ewdata.html', {'ew': data,'fcol':data[0]})
html代碼:
<table class="gridtable">
<tr>
{% for k in fcol %}
<th>{{ k }}</th>
{% endfor %}
</tr>
{% for i in ew %}
<tr>
{# 根據SQL中的字段名顯示數據 #}
<td>{{ i.McNo }}</td>
<td>{{ i.SN }}</td>
<td>{{ i.Model }}</td>
<td>{{ i.Block }}</td>
<td>{{ i.Floor }}</td>
<td>{{ i.Line }}</td>
<td>{{ i.Wight }}</td>
<td>{{ i.TestTime }}</td>
<td>{{ i.Abortive }}</td>
<td>{{ i.Checker }}</td>
<td>{{ i.Multiple }}</td>
<td>{{ i.PackSN }}</td>
</tr>
{% endfor %}
</table>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。