Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
245 views
in Technique[技术] by (71.8m points)

How to add custom field to django rest auth model without modifying the django auth model?

I am trying to add a phone field for Django rest user registration. I am using Django auth model. I don't want to add a custom field to Django user model. Without modifying the user model I need to add a phone field to RegisterUserSerializer

question from:https://stackoverflow.com/questions/65934133/how-to-add-custom-field-to-django-rest-auth-model-without-modifying-the-django-a

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could add a second model that relates with OneToOneField to User. This is best described in the very nice tutorial from Vitor Freitas (here, "Extending User Model Using a One-To-One Link").

Key essence:

from django.db import models
from django.contrib.auth.models import User

class Profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)
    phone= models.CharField(max_length=20, blank=True)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...