如何使用 FastAPI 返回并下载 Excel 文件?
- 2025-03-26 09:08:00
- admin 原创
- 15
问题描述:
如何使用 FastAPI 返回 excel 文件(版本:Office365)?文档看起来非常简单。但是,我不知道media_type
该用什么。这是我的代码:
import os
from fastapi import FastAPI
from fastapi.responses import FileResponse
from pydantic import BaseModel
from typing import Optional
excel_file_path = r"C:Userssome_path he_excel_file.xlsx"
app = FastAPI()
class ExcelRequestInfo(BaseModel):
client_id: str
@app.post("/post_for_excel_file/")
async def serve_excel(item: ExcelRequestInfo):
# (Generate excel using item.)
# For now, return a fixed excel.
return FileResponse(
path=excel_file_path,
# Swagger UI says 'cannot render, look at console', but console shows nothing.
media_type='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
# Swagger renders funny chars with this argument:
# 'application/vnd.ms-excel'
)
假设我做对了,如何下载文件?我可以使用 FastAPI 生成的 Swagger UI 来查看工作表吗?或者,curl?理想情况下,我希望能够在 Excel 中下载和查看文件。
解决方案
这是我最终的(经过编辑的)解决方案,可以让你免于点击。在开发过程中,我不得不从 a 切换FileResponse
到Response
返回io.BytesIO
。
import io
import os.path
from fastapi.responses import Response
@router.get("/customer/{customer}/sheet")
async def generate_excel(customer: str):
excel_file_path: str = None
buffer: io.BytesIO = None
# Generate the sheet.
excel_file_path, buffer = make_excel(customer=customer)
# Return excel back to client.
headers = {
# By adding this, browsers can download this file.
'Content-Disposition': f'attachment; filename={os.path.basename(excel_file_path)}',
# Needed by our client readers, for CORS (cross origin resource sharing).
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "*",
"Access-Control_Allow-Methods": "POST, GET, OPTIONS",
}
media_type = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
return Response(
content=buffer.getvalue(),
headers=headers,
media_type=media_type
)
解决方案 1:
您可以Content-Disposition
使用attachment
参数设置标头,向 Web 浏览器指示应下载该文件,如此处和此处的答案所述。Download file
执行请求后,Swagger UI 将为您提供下载文件的链接。
headers = {'Content-Disposition': 'attachment; filename="Book.xlsx"'}
return FileResponse(excel_file_path, headers=headers)
要在 Web 浏览器中查看文件,可以使用标头中的inline
而不是参数,如前面链接的答案中所述。但是,为了让浏览器能够显示 Excel 文件,应该在 中设置正确的值(对于 Excel 文件,请参阅此处),并且(或)必须是浏览器已知的文件扩展名(这通常通过 Web 浏览器扩展/插件实现)。attachment
`Content-Dispositionmedia_type
FileResponse.xlsx
.xls`
相关推荐
热门文章
项目管理软件有哪些?
热门标签
云禅道AD