91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在django中使用xlwt導出excel文件

發布時間:2021-03-29 16:49:34 來源:億速云 閱讀:210 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關怎么在django中使用xlwt導出excel文件,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

維護統一的style樣式,可以使導出的數據更加美觀。

def export_excel(request): 
  # 設置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'人員表單')
  # 維護一些樣式, 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]

  # 寫標題欄
  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, '手機', 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, '辦公地點', style_heading) 
  sheet.write(0,9, '部門', style_heading)
  sheet.write(0,10, '人員狀態', style_heading)
   
  # 寫數據
  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

關于怎么在django中使用xlwt導出excel文件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊吾县| 津市市| 汾西县| 来凤县| 英吉沙县| 巴彦淖尔市| 佛学| 临桂县| 沭阳县| 牡丹江市| 河东区| 疏附县| 奎屯市| 卢氏县| 辽中县| 靖远县| 白玉县| 图木舒克市| 忻城县| 台中县| 庄河市| 绍兴县| 隆子县| 久治县| 佛教| 临江市| 新建县| 惠安县| 盖州市| 临西县| 聂荣县| 沙坪坝区| 资中县| 陆川县| 安平县| 中超| 许昌县| 柳林县| 仁布县| 应城市| 白沙|