文件下载
在Flask中,文件下载只需要接口返回真实文件即可,使用Flask自带的send_from_directory方法,代码如下:
from flask import send_from_directory
import os
# file_name为你的文件所在地址
@app.route('/download', methods=['GET'])
def marking_result_Linkindownload():
file_name = os.getcwd()
return send_from_directory(file_name, 'filename.xlsx', as_attachment=True)