概述
转载自 2333,针对对自己遇到的坑做了些许修改
使用上,这个是写在django的views里面的,然后对应urls写好,在网页的导出按钮的标签里使用href="{% url 'xxx_module:excel_export' %}
即可。
from django.http import HttpResponse
from xlwt import *
from StringIO import StringIO #需要stringIO,这是python2中的,如果是python3,使用 from io import StringIO
def excel_export(request):
"""
导出excel表格
"""
list_obj = Comment.objects.all().order_by("-time")
if list_obj:
# 创建工作薄
ws = Workbook(encoding='utf-8')
w = ws.add_sheet(u"数据报表第一页")
w.write(0, 0, "id")
w.write(0, 1, u"用户名")
w.write(0, 2, u"发布时间")
w.write(0, 3, u"内容")
w.write(0, 4, u"来源")
# 写入数据
excel_row = 1
for obj in list_obj:
data_id = obj.id
data_user = obj.username
data_time = obj.time.strftime("%Y-%m-%d")[:10]
data_content = obj.content
dada_source = obj.source
w.write(excel_row, 0, data_id)
w.write(excel_row, 1, data_user)
w.write(excel_row, 2, data_time)
w.write(excel_row, 3, data_content)
w.write(excel_row, 4, dada_source)
excel_row += 1
# 检测文件是够存在
# 方框中代码是保存本地文件使用,如不需要请删除该代码
###########################
exist_file = os.path.exists("test.xls")
if exist_file:
os.remove(r"test.xls")
ws.save("test.xls")
############################
sio = StringIO() #这里原博客是StringIO.StringIO(),发现有点问题
ws.save(sio)
sio.seek(0)
response = HttpResponse(sio.getvalue(), content_type='application/vnd.ms-excel')
response['Content-Disposition'] = 'attachment; filename=yourname.xls'
response.write(sio.getvalue())
return response
最后
以上就是妩媚网络为你收集整理的python (django)导出数据库中的信息为excel表格的全部内容,希望文章能够帮你解决python (django)导出数据库中的信息为excel表格所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复