AWS Chalice-发送文件作为响应

时间:2019-06-19 16:14:01

标签: amazon-web-services aws-lambda aws-api-gateway chalice

我目前通过以下方式进行API设置。

@app.route('/', cors=cors_config, methods=['GET'])
def index():
    request = app.current_request

    file_name = "orders.csv"
    file_path = '/tmp/{}_{}'.format("Life", file_name)

    with open(file_path, 'w') as csvFile:
        field_names = ["OrderID", "OrderedBy", "Agent"]
        writer = csv.DictWriter(csvFile, fieldnames=field_names)
        writer.writeheader()
        for item in range(10):
            writer.writerow(
                rowdict={
                    "OrderID": str(1), 
                    "OrderedBy": "noob",
                    "Agent": "pro"
                }
            )
        csvFile.close()

    with open(file_path, 'rb') as f:
        contents = f.read()
    f.close()

    file_size = os.path.getsize(file_path)

    headers = {'Content-Type': 'application/octet-stream', 
        'Content-Disposition': 'attachment; filename={}'.format(file_name),
        'Content-Length': str(os.path.getsize(file_path))
    }
    return Response(body=contents, headers=headers)

现在,当使用来运行此代码时,我可以下载在此处创建的文件而不会出现问题。但是,将其部署到我的AWS账户后,API端点允许我下载文件,但它包含所需文件的二进制字符串。我阅读了一些其他文章,这些文章指示将我执行的contentHandling路径更新为CONVERT_TO_BINARY(See the answer here),然后从API Gateway内部重新部署API(而不是通过圣杯部署)。它仍然显示相同的行为。

有什么办法解决这个问题?

0 个答案:

没有答案