濮阳杆衣贸易有限公司

主頁 > 知識庫 > Django中如何用xlwt生成表格的方法步驟

Django中如何用xlwt生成表格的方法步驟

熱門標(biāo)簽:天津塘沽區(qū)地圖標(biāo)注 滴滴地圖標(biāo)注公司 400電話在線如何申請 杭州房產(chǎn)地圖標(biāo)注 如何申請400電話代理 地圖標(biāo)注可以遠(yuǎn)程操作嗎 江門智能電話機(jī)器人 智能電話機(jī)器人調(diào)研 甘肅高頻外呼系統(tǒng)

同樣是做表格,但是有些人的表格就做的很好看。融合了之前所學(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一個文件
  wb = xlwt.Workbook(encoding = 'utf-8') 
  # new一個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)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • django使用xlwt導(dǎo)出excel文件實(shí)例代碼

標(biāo)簽:東莞 重慶 廊坊 德宏 臨汾 河池 漢中 長春

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Django中如何用xlwt生成表格的方法步驟》,本文關(guān)鍵詞  Django,中如,何用,xlwt,生成,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Django中如何用xlwt生成表格的方法步驟》相關(guān)的同類信息!
  • 本頁收集關(guān)于Django中如何用xlwt生成表格的方法步驟的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    仙居县| 沁水县| 东兰县| 武邑县| 汨罗市| 积石山| 锦州市| 汝州市| 湖州市| 沛县| 咸宁市| 长海县| 乌拉特中旗| 长子县| 华蓥市| 治县。| 贞丰县| 交城县| 西平县| 承德县| 武宁县| 华亭县| 花莲市| 南汇区| 咸丰县| 北碚区| 瑞丽市| 珲春市| 武川县| 宁海县| 黑龙江省| 黄浦区| 高雄县| 丰顺县| 嘉荫县| 兰州市| 枣阳市| 乳源| 长兴县| 安康市| 崇礼县|