django在超时时重定向的方式

时间:2017-11-19 08:54:34

标签: python django

我想了解我在超时时用于重定向到另一个页面的方法是否合适,或者在Django中是否有更合适的方法。

这是我的模板:

{% extends "base.html" %}
{% block content %}
 <h1>Thanks for visiting, come back soon!</h1>
 <script type="text/javascript">
    setTimeout(function() {
        window.location.href = '/home/';
    }, 2000);
</script>

{% endblock %}

这是我的urls.py:

url(r"^$", views.HomePage.as_view(), name="home"),
url(r"^home/$", views.HomePage.as_view()),

是否可以将两条线合二为一? (我正在思考&#34;不要重复自己&#34;原则)

0 个答案:

没有答案