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.
我知道添加重定向到Djangowith相当简单HttpResponseRedirect,但是可以进行延迟重定向吗?
Django
HttpResponseRedirect
我要添加的内容类似于用户的确认页面,基本上会说“您的请求已成功”持续 3 秒钟,然后返回登录页面或其他内容。
我读过关于JQuery,但据我所知,这是为了JavaScript并且我想尽可能地保留它Python。
JQuery
JavaScript
Python
有任何想法吗?
您可以使用 atemplateView显示您的“成功”页面,然后在模板中添加
templateView
<meta http-equiv="refresh" content="3;url=http://foobar.somewhereelse.com/">