Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在烧瓶微框架中处理重定向和请求的方式有什么不同吗?我有一堆函数要在发出请求之前运行,但显然只要重定向到另一个 url,它们就不会运行。
如果您return redirect('someurl')在视图函数中,它将导致将Location标头发送到客户端。因此,除非客户端决定从缓存中加载目标,否则将执行目标 URL 的查看功能,就像客户端直接访问它一样。
return redirect('someurl')
Location