摘要: from django.utils.encoding import escape_uri_pathfrom django.http import HttpResponsedef download(request): fn = "中文文件.xlsx" with open(fn, 'rb') as f: content = f.read() response = H... 阅读全文
posted @ 2019-03-04 20:44 TimLinux 阅读(549) 评论(0) 推荐(0) 编辑