python - Django 自定义注册字段

标签 python django registration django-registration

对于将自定义字段添加到 django-registration 注册表单/流程这个看似简单的问题,提供的答案范围越来越大,我越来越感到困惑。这应该是包的默认记录方面(不要听起来忘恩负义,只是因为它是一个装备精良的包),但问题的解决方案令人眼花缭乱。

谁能给我最简单的解决方案,让默认注册页面中包含 UserProfile 模型数据?

更新:

我最终使用 Django Registration 自己的信号来给我这个 hacky 修复。它特别难看,因为我不得不在 POST 属性上使用 try 来处理我的 bool 值,因为我发现如果复选框留空,则不会返回任何内容。

如果您有任何改进建议或最佳实践,我们将不胜感激。

我的应用/models.py

from registration.signals import user_registered
from django.dispatch import receiver

class UserProfile(models.Model):
    user = models.OneToOneField(User)
    event_commitments = models.ManyToManyField(Event, null=True, blank=True)
    receive_email = models.BooleanField(default=True)

@receiver(user_registered)
def registration_active_receive_email(sender, user, request, **kwargs):
    user_id = user.userprofile.id
    user = UserProfile.objects.get(pk=user_id)

    try:
        if request.POST['receive_email']:
            pass
    except:
        user.receive_email = False
        user.save()

注册应用/forms.py

class RegistrationForm(forms.Form):

    # default fields here, followed by my custom field below

    receive_email = forms.BooleanField(initial=True, required=False)

谢谢

最佳答案

您所拥有的看起来是一种可行的方法。

我查看了 django 注册代码,并根据注册 View 中的以下评论提出了另一种解决方案。我不确定这是否更清洁,但如果您不喜欢信号,这很好。如果您打算进行更多自定义,这也提供了一个更容易的途径。

# from registration.views.register:
"""
...
2. The form to use for account registration will be obtained by
   calling the backend's ``get_form_class()`` method, passing the
   ``HttpRequest``. To override this, see the list of optional
   arguments for this view (below).

3. If valid, the form's ``cleaned_data`` will be passed (as
   keyword arguments, and along with the ``HttpRequest``) to the
   backend's ``register()`` method, which should return the new
   ``User`` object.
...
"""

您可以创建一个自定义后端并重写那些提到的方法:

# extend the provided form to get those fields and the validation for free
class CustomRegistrationForm(registration.forms.RegistrationForm):
    receive_email = forms.BooleanField(initial=True, required=False)

# again, extend the default backend to get most of the functionality for free
class RegistrationBackend(registration.backends.default.DefaultBackend):

    # provide your custom form to the registration view
    def get_form_class(self, request):
        return CustomRegistrationForm

    # replace what you're doing in the signal handler here
    def register(self, request, **kwargs):
        new_user = super(RegistrationBackend, self).register(request, **kwargs)
        # do your profile stuff here
        # the form's cleaned_data is available as kwargs to this method
        profile = new_user.userprofile
        # use .get as a more concise alternative to try/except around [] access
        profile.receive_email = kwargs.get('receive_email', False)
        profile.save()
        return new_user

要使用自定义后端,您可以提供单独的网址。在包含默认 url 之前,编写 2 个指向您的自定义后端的 confs。 URL 按照定义的顺序进行测试,因此如果您在包含默认值之前定义这两个,则这两个将在测试默认值之前捕获。

url(r'^accounts/activate/(?P<activation_key>\w+)/$',
    activate,
    {'backend': 'my.app.RegistrationBackend'},
    name='registration_activate'),
url(r'^accounts/register/$',
    register,
    {'backend': 'my.app.RegistrationBackend'},
    name='registration_register'),

url(r'^accounts/', include('registration.backends.default.urls')),

文档实际上描述了所有这些,但它们不是特别容易访问(没有 readthedocs)。它们都包含在项目中,我正在浏览它们here .

关于python - Django 自定义注册字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12664857/

相关文章:

python - Django 未记录到文件

python - 使用 cron 作业执行 python3 文件。

django - django 中的多线程对话(如 Reddit)

php - 如何将我的 PHP 注册系统与 Joomla 注册相结合?

C++交叉初始化错误

css - 如何为 django 应用程序设置 css 的路径

Python。写入文件,无法理解行为

python - Scrapy:如何从 spider_idle 事件回调中手动插入请求?

django - Elastic Beanstalk 环境的健康状况严重 : Following services are not running: release

python - 如何在本地计算机(Mac 10.7)上测试发送带有 Django 注册的电子邮件?