我对django很新,我很迷失django-registration。目前我已经开始使用django-registration,但我需要为其添加另一个字段以获取电话号码。我需要注册字段中的电话号码字段,以便我可以使用twilio的api通过文本而不是电子邮件发送验证链接。我如何将这一个字段添加到django-registration?
答案 0 :(得分:1)
不是django-registration,但我定制了django-userena一次,以在注册表单中添加自定义字段。
您可以查看代码here。
我确信这个过程在django-registration中也大致相同:覆盖注册表单并添加自定义字段。
但是,我相信,django-registration不再保留。这是一个经典而且运作良好,但也有其他选择。
答案 1 :(得分:1)
我在工作中使用django,而且我们曾经将这个模型附加到用户身上,例如:
个人资料模型示例
class Profile(models.Model):
user = models.OneToOneField(User)
phone = models.CharField(max_length=255, blank=True, null=True, verbose_name='phone')
description = models.TextField(blank=True, verbose_name='descripction')
...
...
class Meta:
ordering = ['user']
verbose_name = 'user'
verbose_name_plural = 'users'
admin.py示例
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
from django.contrib.auth.models import User
class ProfileInline(admin.StackedInline):
model = Profile
can_delete = False
filter_horizontal = ['filter fields'] # example: ['tlf', 'country',...]
verbose_name_plural = 'profiles'
fk_name = 'user'
class UserAdmin(UserAdmin):
inlines = (ProfileInline, )
list_display = ('username', 'email', 'first_name', 'last_name', 'is_staff')
list_filter = ('is_staff', 'is_superuser', 'is_active')
admin.site.unregister(User) # Unregister user to add new inline ProfileInline
admin.site.register(User, UserAdmin) # Register User with this inline profile
创建用户并将个人资料附加给他
# Create user
username = 'TestUser'
email = 'test@example.com'
passw = '1234'
new_user = User.objects.create_user(username, email, passw)
# Create profile
phone = '654654654'
desc = 'Test user profile'
new_profile = Profile(user=new_user, phone = phone, description=desc)
new_profile.profile_role = new_u_prole
new_profile.user = new_user
# Save profile and user
new_profile.save()
new_user.save()
现在您已将此个人资料模型附加到每个用户,您可以将您希望的字段添加到个人资料模型中,例如,如果您这样做:
user = User.objects.get(id=1)
您可以访问他的个人资料:
user.profile
并访问手机
user.profile.phone