0

FastAPI を使用して画像を挿入する方法を見つけようとしています。これが私のコードです。

app = FastAPI()

app.add_middleware(
CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"]
)

@app.get("/files/{file_path:path}")


def read_user_me(file_path: str):
html_content = """

<html>
    <head>
        <title>Some HTML in here</title>
    </head>
    <body>
        <img src="file:///Users/user/Desktop/document/app//{0}"></img>
    </body>
</html>

"""

html_content =  html_content.format(file_path,file_path)
return HTMLResponse(content=html_content, status_code=200)

univorn を起動して localhost を開きます。次のエラーが表示されます。

ローカル リソースの読み込みが許可されていません: file:///Users/user/Desktop/document/app//img.jpg

助けてください

4

1 に答える 1