FastAPI 重定向给出了不允许的方法错误
Posted
技术标签:
【中文标题】FastAPI 重定向给出了不允许的方法错误【英文标题】:FastAPI redirect gives method not allowed error 【发布时间】:2021-06-25 05:30:46 【问题描述】:我创建了一个登录路径,我在其中发布我的表单数据并设置一个 cookie。设置 cookie 后,我重定向到“/main”,在那里我得到detail:"Method Not Allowed"
作为响应。
@app.post("/login")
async def login(request:Request):
response = RedirectResponse(url="/main")
response.set_cookie(key="cookie",value="key-value")
return response
@app.get("/main")
async def root(request:Request, cookie: Optional[str] = Cookie(None)):
if cookie:
answer = "set to %s" % cookie
else:
answer = "not set"
return "value": answer
我进一步检查了控制台,发现在重定向期间向“/main”发出了 POST 请求,因此导致了错误。当我将其更改为 app.post("/main")
时,它工作正常。如何避免此错误?我不想每次都发布访问“/main”的请求。提前致谢。
【问题讨论】:
【参考方案1】:我发现在 FastAPI 中,starlette 响应默认有代码 307,它在重定向期间保留方法,因此是 post 请求。我通过在返回响应之前添加response.status_code = 302
解决了这个问题。
【讨论】:
以上是关于FastAPI 重定向给出了不允许的方法错误的主要内容,如果未能解决你的问题,请参考以下文章
Laravel 重定向到一个路由,但是 apache 给出 404 错误