要建立自訂 404 Not Found 頁面,FastAPI 提供了多種方法。合適的方法取決於您的特定要求。
<br>@app.middleware("http") <br>async def redirect_on_not_found(request: Request, call_next):<pre class="brush:php;toolbar:false">response = await call_next(request) if response.status_code == 404: return RedirectResponse("https://fastapi.tiangolo.com") else: return response
此中間件檢查回應狀態碼並重新導向至自訂頁面,如果程式碼是404。
<br>@app.exception_handler(404)<br>async def not_found_exception_handler(request : Re>async def not_found_exception_handler(request : Reception, HTTP) :<pre class="brush:php;toolbar:false">return RedirectResponse('https://fastapi.tiangolo.com')
可以專門為404 狀態代碼建立自訂異常處理程序。這樣可以實現更具體、更有針對性的回應。
FastAPI 支援使用範本來呈現自訂錯誤頁面。此範例建立兩個錯誤頁面:
<br>templates = Jinja2Templates(directory='templates')<p>exception_handlers = {</p><pre class="brush:php;toolbar:false">404: not_found_error, 500: internal_error
exception_handlers = {
以上是如何在 FastAPI 中建立自訂 404 Not Found 頁面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!