用自定义字段扩展User模型(与Django的身份验证应用程序绑定)的最佳方法是什么?我还可能想使用电子邮件作为用户名(用于身份验证)。
我已经看到了一些方法,但不能决定哪一个是最好的。
用自定义字段扩展User模型(与Django的身份验证应用程序绑定)的最佳方法是什么?我还可能想使用电子邮件作为用户名(用于身份验证)。
我已经看到了一些方法,但不能决定哪一个是最好的。
当前回答
注意:这个答案是不赞成的。如果你使用的是Django 1.7或更高版本,请参阅其他答案。
我就是这么做的。
#in models.py
from django.contrib.auth.models import User
from django.db.models.signals import post_save
class UserProfile(models.Model):
user = models.OneToOneField(User)
#other fields here
def __str__(self):
return "%s's profile" % self.user
def create_user_profile(sender, instance, created, **kwargs):
if created:
profile, created = UserProfile.objects.get_or_create(user=instance)
post_save.connect(create_user_profile, sender=User)
#in settings.py
AUTH_PROFILE_MODULE = 'YOURAPP.UserProfile'
这将在每次保存用户时创建一个用户配置文件。 然后你可以使用
user.get_profile().whatever
以下是文档中的更多信息
http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users
更新:请注意AUTH_PROFILE_MODULE自v1.5起已弃用:https://docs.djangoproject.com/en/1.5/ref/settings/#auth-profile-module
其他回答
注意:这个答案是不赞成的。如果你使用的是Django 1.7或更高版本,请参阅其他答案。
我就是这么做的。
#in models.py
from django.contrib.auth.models import User
from django.db.models.signals import post_save
class UserProfile(models.Model):
user = models.OneToOneField(User)
#other fields here
def __str__(self):
return "%s's profile" % self.user
def create_user_profile(sender, instance, created, **kwargs):
if created:
profile, created = UserProfile.objects.get_or_create(user=instance)
post_save.connect(create_user_profile, sender=User)
#in settings.py
AUTH_PROFILE_MODULE = 'YOURAPP.UserProfile'
这将在每次保存用户时创建一个用户配置文件。 然后你可以使用
user.get_profile().whatever
以下是文档中的更多信息
http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users
更新:请注意AUTH_PROFILE_MODULE自v1.5起已弃用:https://docs.djangoproject.com/en/1.5/ref/settings/#auth-profile-module
在Django 3.0+版本中非常简单(如果你不是在项目中):
在models.py
from django.db import models
from django.contrib.auth.models import AbstractUser
class CustomUser(AbstractUser):
extra_field=models.CharField(max_length=40)
在settings.py
首先,注册你的新应用,然后在AUTH_PASSWORD_VALIDATORS下面 添加
AUTH_USER_MODEL ='users.CustomUser'
最后,在管理中注册你的模型,运行makemigrations和migrate,它将成功完成。
官方文档:https://docs.djangoproject.com/en/3.2/topics/auth/customizing/#substituting-a-custom-user-model
下面是另一种扩展User的方法。 我觉得它比上面两种方法更清晰,简单,易读。
http://scottbarnham.com/blog/2008/08/21/extending-the-django-user-model-with-inheritance/
使用上述方法:
你不需要使用 user.get_profile()。Newattribute访问额外的信息 与用户相关 你可以直接访问 通过 user.newattribute
在这里,我试图解释如何用额外的字段来扩展Django的Default用户模型 很简单,就这么做。
Django允许使用AbstractUser扩展默认的用户模型
注意:-首先创建一个额外的字段模型,你想添加到用户模型,然后运行命令python manage.py makemigrations和python manage.py migrate
首先运行——> python manage.py makemigrationthen
第二步运行python manage.py migrate
步骤:-创建一个带有额外字段的模型,你想在Django默认用户模型中添加这些字段(在我的例子中,我创建了CustomUser
model.py
from django.db import models
from django.contrib.auth.models import AbstractUser
# Create your models here.
class CustomUser(AbstractUser):
mobile_no = models.IntegerField(blank=True,null=True)
date_of_birth = models.DateField(blank=True,null=True)
在settings.py中添加你创建的模型名称,在我的例子中CustomUser是用户模型。在settings .py中注册,使其成为默认用户模型,
#settings.py
AUTH_USER_MODEL = 'myapp.CustomUser'
最后在admin.py中注册CustomUser模型 # admin.py
@admin.register(CustomUser)
class CustomUserAdmin(admin.ModelAdmin):
list_display = ("username","first_name","last_name","email","date_of_birth", "mobile_no")
然后执行命令python manage.py makemigrations
然后python manage.py migrate
然后python manage.py createsuperuser
现在你可以看到你的模型默认用户模型扩展了(mobile_no,date_of_birth)
现在已经太迟了,但我的答案是给那些用最新版本的Django寻找解决方案的人的。
models.py:
from django.db import models
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
class Profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
extra_Field_1 = models.CharField(max_length=25, blank=True)
extra_Field_2 = models.CharField(max_length=25, blank=True)
@receiver(post_save, sender=User)
def create_user_profile(sender, instance, created, **kwargs):
if created:
Profile.objects.create(user=instance)
@receiver(post_save, sender=User)
def save_user_profile(sender, instance, **kwargs):
instance.profile.save()
你可以在这样的模板中使用它:
<h2>{{ user.get_full_name }}</h2>
<ul>
<li>Username: {{ user.username }}</li>
<li>Location: {{ user.profile.extra_Field_1 }}</li>
<li>Birth Date: {{ user.profile.extra_Field_2 }}</li>
</ul>
在views.py中是这样的:
def update_profile(request, user_id):
user = User.objects.get(pk=user_id)
user.profile.extra_Field_1 = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit...'
user.save()