django FileResponse 解决中文命名文件下载后乱码问题
用于解决中文命名文件乱码问题
转载自
from django.utils.encoding import escape_uri_path
def excel(request):
# df=pd.read_excel('测试.xlsx')
# ht=df.to_html()
# with open('./测试.xlsx', 'rb')as f:
# df = f.read()
df=open('./测试.xlsx) # 这里需要用open打开,如果用with open 打开的话会造成读取失败,
name = "测试.xlsx"
response = FileResponse(df)
response['Content-Type'] = 'application/octet-stream' # 让浏览器知道这是一个下载文件
# 解决文件下载中文命名出现乱码的情况
response["Content-Disposition"] = "attachment; filename={0}".format(escape_uri_path(name))
return response
在url中加入一条路由即可直接使用,亲测有效
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/77153.html