Django中如何用xlwt生成表格的方法步驟
同樣是做表格,但是有些人的表格就做的很好看。融合了之前所學(xué)不同模塊的知識,來講講Django中生成表格的特殊方法。
這里只是mark一下導(dǎo)出的方法,并沒有做什么REST處理和異常處理。
維護(hù)統(tǒng)一的style樣式,可以使導(dǎo)出的數(shù)據(jù)更加美觀。
def export_excel(request):
# 設(shè)置HttpResponse的類型
response = HttpResponse(content_type='application/vnd.ms-excel')
response['Content-Disposition'] = 'attachment;filename=user.xls'
# new一個(gè)文件
wb = xlwt.Workbook(encoding = 'utf-8')
# new一個(gè)sheet
sheet = wb.add_sheet(u'人員表單')
# 維護(hù)一些樣式, style_heading, style_body, style_red, style_green
style_heading = xlwt.easyxf("""
font:
name Arial,
colour_index white,
bold on,
height 0xA0;
align:
wrap off,
vert center,
horiz center;
pattern:
pattern solid,
fore-colour 0x19;
borders:
left THIN,
right THIN,
top THIN,
bottom THIN;
"""
)
style_body = xlwt.easyxf("""
font:
name Arial,
bold off,
height 0XA0;
align:
wrap on,
vert center,
horiz left;
borders:
left THIN,
right THIN,
top THIN,
bottom THIN;
"""
)
style_green = xlwt.easyxf(" pattern: pattern solid,fore-colour 0x11;")
style_red = xlwt.easyxf(" pattern: pattern solid,fore-colour 0x0A;")
fmts = [
'M/D/YY',
'D-MMM-YY',
'D-MMM',
'MMM-YY',
'h:mm AM/PM',
'h:mm:ss AM/PM',
'h:mm',
'h:mm:ss',
'M/D/YY h:mm',
'mm:ss',
'[h]:mm:ss',
'mm:ss.0',
]
style_body.num_format_str = fmts[0]
# 寫標(biāo)題欄
sheet.write(0,0, '姓名', style_heading)
sheet.write(0,1, '英文名', style_heading)
sheet.write(0,2, '職位', style_heading)
sheet.write(0,3, '公司電話', style_heading)
sheet.write(0,4, '手機(jī)', style_heading)
sheet.write(0,5, 'QQ', style_heading)
sheet.write(0,6, 'MSN', style_heading)
sheet.write(0,7, 'Email', style_heading)
sheet.write(0,8, '辦公地點(diǎn)', style_heading)
sheet.write(0,9, '部門', style_heading)
sheet.write(0,10, '人員狀態(tài)', style_heading)
# 寫數(shù)據(jù)
row = 1
for usa in employesInfo.objects.all():
sheet.write(row,0, usa.name, style_body)
sheet.write(row,1, usa.eName, style_body)
sheet.write(row,2, usa.postion, style_body)
sheet.write(row,3, usa.cPhone, style_body)
sheet.write(row,4, usa.pPhone, style_body)
sheet.write(row,5, usa.qq, style_body)
sheet.write(row,6, usa.msn, style_body)
sheet.write(row,7, usa.email, style_body)
sheet.write(row,8, usa.offAreas, style_body)
sheet.write(row,9, usa.depart, style_body)
if int(usa.status) == 1:
sheet.write(row,10, '在職',style_green)
else:
sheet.write(row,10,'離職', style_red)
row=row + 1
# 寫出到IO
output = StringIO.StringIO()
wb.save(output)
# 重新定位到開始
output.seek(0)
response.write(output.getvalue())
return response
到此這篇關(guān)于Django中如何用xlwt生成表格的方法步驟的文章就介紹到這了,更多相關(guān)Django xlwt生成表格內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Tensorflow 自定義loss的情況下初始化部分變量方式
今天小編就為大家分享一篇Tensorflow 自定義loss的情況下初始化部分變量方式,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-01-01
Python光學(xué)仿真wxpython透鏡演示系統(tǒng)初始化與參數(shù)調(diào)節(jié)
這篇文章主要為大家介紹了Python光學(xué)仿真wxpython透鏡演示系統(tǒng)的初始化與參數(shù)調(diào)節(jié),同樣在學(xué)習(xí)wxpython透鏡演示系統(tǒng)的入門同學(xué)可以借鑒參考下,希望能夠有所幫助2021-10-10
Python讀取HDFS目錄下的所有文件的實(shí)現(xiàn)示例
HDFS是Apache Hadoop的分布式文件系統(tǒng),本文主要介紹了Python讀取HDFS目錄下的所有文件的實(shí)現(xiàn)示例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-07-07
使用Python pandas讀取CSV文件應(yīng)該注意什么?
本文是給使用pandas的新手而寫,主要列出一些常見的問題,根據(jù)筆者所踩過的坑,進(jìn)行歸納總結(jié),希望對讀者有所幫助,需要的朋友可以參考下2021-06-06
python 提取tuple類型值中json格式的key值方法
今天小編就為大家分享一篇python 提取tuple類型值中json格式的key值方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-12-12
python報(bào)錯(cuò): ''list'' object has no attribute ''shape''的解決
這篇文章主要介紹了python報(bào)錯(cuò): 'list' object has no attribute 'shape'的解決,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-07-07
關(guān)于dataframe.query()篩選tips
在Pandas中,通過布爾索引或.query()方法可以實(shí)現(xiàn)對DataFrame中數(shù)據(jù)的篩選。例如,篩選特定列符合條件的行數(shù)據(jù)或排除某些類型值。此外,.query()方法還支持使用外部變量進(jìn)行篩選。這些操作對數(shù)據(jù)處理非常有用,可以高效地進(jìn)行數(shù)據(jù)清洗和預(yù)處理2024-09-09
python實(shí)現(xiàn)數(shù)據(jù)寫入excel表格
這篇文章主要為大家詳細(xì)介紹了python實(shí)現(xiàn)數(shù)據(jù)寫入excel表格,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-03-03

