0

我正在使用 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

我哪里错了?

4

1 回答 1

0

因为请求在这里https://github.com/Tivix/django-rest-auth/blob/master/rest_auth/registration/views.py#L38并没有调用 serializer.create() 实际上。

尝试按照文档中的建议覆盖注册表单:

ACCOUNT_FORMS = {
   'signup': 'path.to.custom.SignupForm'
}

个人资料表格示例: https ://djangosnippets.org/snippets/2081/

于 2015-03-16T11:40:50.977 回答