最新公告
  • 欢迎您光临起源地模板网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入钻石VIP
  • Django中如何用xlwt生成表格

    正文概述 python学习网   2020-12-15   369

    同样是做表格,但是有些人的表格就做的很好看。融合了之前所学不同模块的知识,来讲讲Django中生成表格的特殊方法。

    这里只是mark一下导出的方法,并没有做什么REST处理和异常处理。

    维护统一的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生成表格的方法。更多Python学习推荐:起源地模板网教学中心


    起源地下载网 » Django中如何用xlwt生成表格

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    对于PPT,KEY,Mockups,APP,网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。
    模板不会安装或需要功能定制以及二次开发?
    请QQ联系我们

    发表评论

    还没有评论,快来抢沙发吧!

    如需帝国cms功能定制以及二次开发请联系我们

    联系作者

    请选择支付方式

    ×
    迅虎支付宝
    迅虎微信
    支付宝当面付
    余额支付
    ×
    微信扫码支付 0 元