我正在使用 Django Rest Framework,并创建了一个扩展的 UserProfile 模型,如下所示:
class UserProfile(models.Model):
user = models.OneToOneField(User)
#Some Fields for UserProfile
def user_profile_url(self):
return reverse('user_profile', args=(self.user.id, "{}-{}".format(self.user.first_name, self.user.last_name)))
User.profile = property(lambda u: UserProfile.objects.get_or_create(user=u)[0])
但是,在使用rest_auth
的/registration
端点注册时:http://django-rest-auth.readthedocs.org/en/latest/api_endpoints.html#registration,即使创建了 UserProfile 也没有创User
建。在我的serializers.py
中,我为注册的用户做了以下事情
class UserSignUpSerializer(serializers.ModelSerializer):
class Meta:
model = User
fields = ('email',)
def create(self, validated_data):
user = User(email=validated_data['email'], username=validated_data['email'])
user.set_password(validated_data['password'])
user.save()
profile = UserProfile(user=user)
profile.save()
return user
我哪里错了?