When to use the Custom User Model in Django 1.5

扶醉桌前 提交于 2019-12-20 09:06:10

问题


I have a question regarding the custom user model in Django 1.5

So right now the default user model looks just fine to me, I just need to add a few other variables such as gender,location and birthday so that users can fill up those variables after they have successfully registered and activated their account.

So, what is the best way to implement this scenario?

Do I have to create a new app called Profile and inherit AbstractBaseUser? and add my custom variable to models.py? Any good example for me to follow?

thank you in advance


回答1:


You want to extend your user model to the AbstractUser and add your additional fields. AbstractUser inherits all of the standard user profile fields, whereas AbstractBaseUser starts you from scratch without any of those fields.

It's hard to define best practices this close to the release, but it seems that unless you need to drastically redefine the User model, then you should use AbstractUser where possible.

Here are the docs for extending the User model using AbstractUser

Your models.py would then look something like this:

class MyUser(AbstractUser):
    gender = models.DateField()
    location = models.CharField()
    birthday = models.CharField()

MyUser will then have the standard email, password, username, etc fields that come with the User model, and your three additional fields above.

Then you need to add the AUTH_USER_MODEL to your settings.py:

AUTH_USER_MODEL = 'myapp.MyUser'



来源:https://stackoverflow.com/questions/15123596/when-to-use-the-custom-user-model-in-django-1-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!