django下一个url无法正常工作

zpgglvta  于 2023-05-19  发布在  Go
关注(0)|答案(2)|浏览(161)

我使用默认的django(1.9.5)auth_view创建了一个登录页面,urls.py看起来像这样

url(r'^login/$', auth_views.login, {"template_name": 'login.html'}, name='login'),

并使用django指定的html来生成表单,html看起来像这样

<form method="post" action="{% url 'login' %}?next={{next}}">
                {% csrf_token %}
                <table class="login-form">
                <tr>
                    <td class="input-label">{{ form.username.label_tag }}</td>
                    <td class="input-field"><input class="form-control" id="{{ form.username.id_for_label }}" maxlength="30" name="{{ form.username.html_name }}" type="text" /> 
                    </td>
                </tr>
                <tr>
                    <td class="input-label">{{ form.password.label_tag }}</td>
                    <td class="input-field"><input class="form-control" id="{{ form.password.id_for_label }}" maxlength="30" name="{{ form.password.html_name }}" type="password" /> 
                    </td>
                </tr>
                </table>
                {# Assumes you setup the password_reset view in your URLconf #}
                <p class="pull-left"><a href="{% url 'password_reset' %}">Forgot password?</a></p>
                <button type="submit" class="btn btn-default pull-right"/>
                    Sign in <span class="fa fa-arrow-circle-right"></span>
                </button>
                <input type="hidden" name="next" value="{{ next }}"/>
            </form>

现在,如果任何用户试图访问像/admin这样的页面,并且用户没有经过身份验证,用户将被重定向到/login,并且在成功登录后,他应该根据用户请求重定向到/admin。但是我登陆的是/login/admin。我哪里做错了
任何帮助都很感激。

ipakzgxi

ipakzgxi1#

不要在操作中使用查询参数,将您的操作设置为如下形式

action="{% url 'login' %}"

你已经在你的代码中使用了<input type="hidden" name="next" value="{{ next }}"/>,它将处理你的url的next

93ze6v8z

93ze6v8z2#

解决方案:我已经找到了为什么它不工作,在我的中间件,我正在做lstrip('/'),这是删除/前管理。这意味着当我尝试登录时,URL将看起来像http://localhost:8000/login?/next=admin/而不是http://localhost:8000/login/?next=/admin/

相关问题