0

我在 Safari 中的 Django 登录表单遇到问题,该表单在 Chrome 和 IE 中都成功运行。

在 Chrome/IE 中使用时,表单会正确返回用户名/密码(在需要时),当输入正确的用户名/密码时,用户会登录并重定向到 {{next}}。

在 safari 下,用户名/密码错误也可以正常工作,但是当输入有效的用户名和密码时,用户将被重定向回登录页面而不是 {{next}}。

这是我的登录视图:

def login_user(request):
   next = request.GET['next']

   state = ""
   username = password = ""

   if request.POST:
       username = request.POST.get('username')
       password = request.POST.get('password')

       user = authenticate(username = username, password = password)
       if user is not None:
           if user.is_active:
               login(request, user)

               return HttpResponseRedirect(next)
           else:
               state = "You're account is not active"
       else:
           state = "Your're username and/or password are incorrect."

    return render_to_response('access/login.html', { 'state' : state }, context_instance=RequestContext(request))

以及登录模板中的表单:

<form action="" method="post">{% csrf_token %}
<label for="username">username:</label>
    <input type="text" id="username" name="username"/>      
    <label for="password">password:</label>
<input type="password" name="password"/>
    <input type="submit" value="Log In" />

    <p><strong>{{ state }}</strong></p>
</form>
4

2 回答 2

0

这是我的登录模板(位于 templates/registration/login.html),它有效:

{% load url from future %}

{% block content %}

{% if form.errors %}
<p>Your username and password didn't match. Please try again.</p>
{% endif %}

<form method="post" action="{% url 'django.contrib.auth.views.login' %}">
    {% csrf_token %}
    <table>
    <tr>
        <td>{{ form.username.label_tag }}</td>
        <td>{{ form.username }}</td>
    </tr>
    <tr>
        <td>{{ form.password.label_tag }}</td>
        <td>{{ form.password }}</td>
    </tr>
    </table>

    <input type="submit" value="login" />
    <input type="hidden" name="next" value="{{ next }}" />
</form>

只需连接到 django auth 插件,它对我来说“就可以工作”,而无需自定义视图方法。

于 2012-08-18T14:46:11.253 回答
0

好吧,要么HttpResponseRedirect不工作,要么next价值错误。

我已经多次使用 HttpResponseRedirect 并且到目前为止没有遇到任何问题。

让我们看看第二个选项。当您在 URL 参数中传递它时,浏览器可以转义某些字符。所以你得到的结果是不工作。也许如果你在控制台中打印下一个,你会看到有什么问题?

希望能帮助到你!

于 2012-08-18T13:31:59.740 回答