来自 Flask send_file 的 Zip 文件无效
Posted
技术标签:
【中文标题】来自 Flask send_file 的 Zip 文件无效【英文标题】:Zip file is invalid from Flask send_fiile 【发布时间】:2021-05-18 17:52:37 【问题描述】:我对 JS 代码很陌生,刚刚接手同事留下的工作。
当 Flask 代码使用 send_file 返回 zip 文件时,JS 端下载似乎无效。其他格式,比如 text 和 csv 也不错。
服务器代码sn-p:
@bp.route('/download_file', methods=['POST'])
@login_required
def download_file():
download_path = request.form.get("download_path")
if os.path.exists(download_path):
@after_this_request
def send_response(response):
return response
return send_file(download_path, as_attachment=True)
下载路径是我服务器上的文件路径
块引用
JS代码如下,目标是用户点击下载按钮并下载文件。
$.post('/download_file', 'download_path' : download_path).done(function(data)
var blob =new Blob([data]);
var link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = "my.zip";
link.click();
).fail(function(data)
alert("danger", "Can't find download file");
);
Zip 文件可以下载,但已损坏。我的极限前端调试经验显示 Blob 中的数据看起来很奇怪。感谢任何帮助和建议
enter image description here
【问题讨论】:
【参考方案1】:可能是响应中缺少的内容类型:
response.headers['Content-Type'] = 'application/pdf'
【讨论】:
谢谢,但这不能解决问题。我仍然怀疑JS方面的问题。 header['content-length'] = 304831 是不错的zip大小,但是在JS方面,data.length在52000左右。我不知道为什么它有不同的大小。以上是关于来自 Flask send_file 的 Zip 文件无效的主要内容,如果未能解决你的问题,请参考以下文章