0

我正在尝试使用 django-registration、django-registration-defaults 和 django-email-usernames 为我的 django 应用程序实现注册和登录系统。

一切都安装得很好。django-email-usernames 提供了一个自定义登录表单,允​​许将电子邮件用作用户名。这是表单的代码。

from django import forms
from django.utils.translation import ugettext_lazy as _
from django.contrib.auth import authenticate

...

class EmailLoginForm(forms.Form):
    email = forms.CharField(label=_(u"Email"), max_length=75, widget=forms.TextInput(attrs=dict(maxlength=75)))
    password = forms.CharField(label=_(u"Password"), widget=forms.PasswordInput)

    def clean(self):
        # Try to authenticate the user
        if self.cleaned_data.get('email') and self.cleaned_data.get('password'):
            user = authenticate(username=self.cleaned_data['email'], password=self.cleaned_data['password'])
            if user is not None:
                if user.is_active:
                    self.user = user # So the login view can access it
                else:
                    raise forms.ValidationError(_("This account is inactive."))
            else:
                raise forms.ValidationError(_("Please enter a correct username and password. Note that both fields are case-sensitive."))

        return self.cleaned_data

在 django-registration 的 urls.py 中,有登录页面的模式。它使用默认的 django.contrib.auth.views.login 视图进行登录。

所以在 urls.py 我得到了这个:

from django.conf.urls.defaults import *
from django.views.generic.simple import direct_to_template
from django.contrib.auth import views as auth_views
from registration.views import activate
from registration.views import register

from email_usernames.forms import EmailLoginForm

...

url(r'^login/$', auth_views.login, {'template_name': 'registration/login.html', 'authentication_form': EmailLoginForm}, name='auth_login'),

...

django.contrib.auth.views.login 接受一个 template_name 和要使用的表单。正如你在上面看到的那样,我正在传递那些。我正在设置模板并将 authentication_form 设置为 django-email-usernames 提供的模板。

然后当浏览到登录页面时,我收到以下错误:

/accounts/login/ 处的 TemplateSyntaxError 在渲染时捕获 AttributeError:“WSGIRequest”对象没有属性“get”

模板错误

在模板 /Users/Amir/.virtualenvs/scvd/lib/python2.6/site-packages/registration_defaults/templates/registration/login.html 中,第 16 行出现错误 Caught AttributeError while rendering: 'WSGIRequest' object has no attribute 'get '

6   {% endif %}
7   
8   <form method="post" action="{% url django.contrib.auth.views.login %}">{% csrf_token %}
9   <table>
10  <tr>
11      <td>{{ form.username.label_tag }}</td>
12      <td>{{ form.username }}</td>
13  </tr>
14  <tr>
15      <td>{{ form.password.label_tag }}</td>
16      <td>{{ form.password }}</td>
17  </tr>
18  </table>
19  <p><a href="{% url auth_password_reset %}">Forgot</a> your password?  <a href="{% url registration_register %}">Need an account</a>?</p>
20  
21  <input type="submit" value="login" />
22  <input type="hidden" name="next" value="{{ next }}" />
23  </form>
24  
25  {% endblock %}
26  

我很困。我很确定我正确地进行了 urls.py 配置。我不明白模板中第 16 行 ({{ form.password }}) 发生的错误。

请让我知道我还能提供什么来澄清我的问题。非常感谢您提前提供的帮助。

4

1 回答 1

0

似乎你的 clean() 不是很清楚

 user = authenticate(username=self.cleaned_data['email'], password=self.cleaned_data['password'])

有 .get 失踪

 user = authenticate(username=self.cleaned_data.get['email'], password=self.cleaned_data.get['password'])

使用是个好习惯

 def clean(self):
     x = self.cleaned_data.get("username")
     y = self.cleaned_data.get("password")

那么你可以使用

 user = authenticate(username=x, password=y)
于 2011-09-06T22:16:39.550 回答