Flask send_file() 返回正确的 .xlsx 数据但不正确的文件名

我在 Google App Engine 标准实例中使用 Python 2.7 + flask 从存储桶中获取 .xlsx 文件。当我点击我的下载路径时,它返回正确的数据,但文件名只是“下载”并且文件未被识别为 .xlsx 文件。我可以在 Excel 中打开文件,但是数据确实显示正确。


我尝试将数据写入 io.StringIO,然后使用该数据结构调用 send_file,但它给了我与以前相同的问题。


这是我的路线。


@app.route('/download', methods=['GET'])

def download():


    run_id = request.args.get('run_id')

    fp = BucketHelper().get_report_fp(run_id)

    send_file(fp,

             as_attachment=True,

             mimetype='application/vnd.ms-excel',

             attachment_filename="test.xlsx")

这是获取 cloudtorage.storage_api.ReadBuffer 对象的函数。


import cloudstorage

from google.appengine.api import app_identity


class BucketHelper:

    def __init__(self):

        self.bucket_path = '/my-bucket/path'


    def get_report_fp(self, run_id):

        filename = "{}/my_report_{}.xlsx".format(self.bucket_path, run_id)

        return cloudstorage.open(filename, mode='rb')

文件被命名为“下载”,而不是被命名为“test.xlsx”,并且不被识别为 Excel 文件。


任何帮助表示赞赏。


慕桂英3389331
浏览 432回答 1
1回答

Qyouu

正在调用该文件,download因为这是您设置的路径。@app.route('/download', methods=['GET'])def download():如果您没有能力控制用户的请求,您应该能够通过使用重定向来定义一个虚假的文件名,否则只需使用定义的新路由进行下载。尝试这样的事情?...from flask import redirect...@app.route('/download', methods=['GET'])def download_redirect():&nbsp; &nbsp; redirect('/download/test.xlsx')@app.route('/download/<filename>', methods=['GET'])def download(filename):&nbsp; &nbsp; run_id = request.args.get('run_id')&nbsp; &nbsp; fp = BucketHelper().get_report_fp(run_id)&nbsp; &nbsp; send_file(fp,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;as_attachment=True,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mimetype='application/vnd.ms-excel',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;attachment_filename="test.xlsx")
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python